// JavaScript Document
<!-- Begin
var how_many_ads = 9;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;
if (ad==1) {
banner="images/secondary.jpg";
width="100";
height="354";
}
if (ad==2) {
banner="images/secondary2.jpg";
width="100";
height="354";
}
if (ad==3) {
banner="images/secondary3.jpg";
width="100";
height="354";
}
if (ad==4) {
banner="images/secondary4.jpg";
width="100";
height="354";
}
if (ad==5) {
banner="images/secondary6.jpg";
width="100";
height="354";
}
if (ad==6) {
banner="images/secondary7.jpg";
width="100";
height="354";
}
if (ad==7) {
banner="images/secondary8.jpg";
width="100";
height="354";
}
if (ad==8) {
banner="images/secondary9.jpg";
width="100";
height="354";
}
if (ad==9) {
banner="images/secondary5.jpg";
width="100";
height="354";
}
document.write('<left>');
document.write('<img src="' + banner + '" width=')
document.write(width + ' height=' + height + ' ');
document.write('</center>');

// End -->
