number_of_sponsors=3;
var sctr=0;
var halt=0;
var isn=new Array();
for (i=0;i<number_of_sponsors;i++){
 isn[i]=new Image();
}
isn[0].src="http://www.gruppoitalianoattacchi.it/pub/bianchigif.gif";
isn[1].src="http://www.gruppoitalianoattacchi.it/pub/An_mascheroni.gif";
isn[2].src="http://www.gruppoitalianoattacchi.it/pub/chiminello.gif";
/* Finally, replace the URL's below with those of
   your sponsors IN THE SAME ORDER. */
var durl=new Array();
durl[0]="http://www.lecarrozze-bianchi.it/";
durl[1]="http://www.mascheronigiussano.it/";
durl[2]="mailto:chimicico@yahoo.it";
function rotateIt(){
 if (halt!=1){
  sctr++;
  if (sctr>number_of_sponsors-1){
   sctr=0;
   }
if (document.all)
{
sponsor.filters.blendTrans.apply();
document.sponsor.src=isn[sctr].src;
sponsor.filters.blendTrans.play();
setTimeout("rotateIt()",8000);
}
else
{
document.sponsor.src=isn[sctr].src;
setTimeout("rotateIt()",8000);
}
  }
 }
/*This code will work just fine with or without
 frames.However, if you are in frames a wish
 to replicate the TARGET="_top" call to remove
 frames, change the location href call to:
 parent.location.href=durl[sctr];
 below.*/
function doIt(){
 halt=1;
 top.location.href=durl[sctr];
 }
// End Hiding-->