var how_many_ads = 4; 
var now = new Date() 
var sec = now.getSeconds() 
var ad = sec % how_many_ads; 
ad +=1; 

if (ad==1) {
banner="images/header1.jpg"; 
alt="";
width="597"; 
height="102"; 
} 

if (ad==2) { 
banner="images/header2.jpg"; 
alt="";
width="597"; 
height="102"; 
} 
if (ad==3) { 
banner="images/header3.jpg"; 
alt="";
width="597"; 
height="102"; 
}
if (ad==4) { 
banner="images/header-bg.jpg"; 
alt="";
width="597"; 
height="102"; 
}


document.write('<left>'); 
document.write('<img src=\"' + banner + '\" width=') 
document.write(width + ' height=' + height + ' '); 
document.write('alt=\"' + alt + '\" border=0>'); 
document.write('</center>'); 