<!-- Begin 
var how_many_ads = 7 // Write how many banners you have
// Here don't tuch anything
var now = new Date() 
var sec = now.getSeconds() 
var ad = sec % how_many_ads; ad +=1;

// Don't forget to change the nuber  "if (ad==number) " after every new banner
if (ad==1) 
{ 
txt="";
alt=""; 
banner="images/noname-faces/mira_01.jpg"; 
width="410"; 
height="165"; 
}

if (ad==2) 
{ 
txt="";
alt=""; 
banner="images/noname-faces/mira_02.jpg"; 
width="410"; 
height="165"; 
}

if (ad==3) 
{ 
txt="";
alt=""; 
banner="images/noname-faces/vasi_01.jpg"; 
width="410"; 
height="165"; 
}

if (ad==4) 
{ 
txt="";
alt=""; 
banner="images/noname-faces/vasi_02.jpg"; 
width="410"; 
height="165"; 
}

if (ad==5) 
{ 
txt="";
alt=""; 
banner="images/noname-faces/mira_03.jpg"; 
width="410"; 
height="165"; 
}

if (ad==6) 
{ 
txt="";
alt=""; 
banner="images/noname-faces/lioni_01.jpg"; 
width="410"; 
height="165"; 
}

if (ad==7) 
{ 
txt="";
alt=""; 
banner="images/noname-faces/lioni_02.jpg"; 
width="410"; 
height="165"; 
}

document.write('<right>');
document.write('<img src=\"' + banner + '\" width=')
document.write(width + ' height=' + height + ' '); 
document.write('alt=\"' + alt + '\" border=0><br>'); 
document.write('<small>' + txt + '</small></a>'); document.write('</right>'); 
// End -->

