// JavaScript Document
var how_many_ads = 3;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;
if (ad==1) {
url="#";
alt="SERIES PREMIERE! Fly Girls, Wed. March 24 9pm";
banner="/images/short/160x300_fly_prem.jpg";
width="160";
height="300";
}
if (ad==2) {
url="/shows/antm/";
alt="ALL NEW! America's Next Top Model, Wednesday 8pm";
banner="/images/short/160x300_antm14.jpg";
width="160";
height="300";
}
if (ad==3) {
url="#";
alt="ALL NEW! High Society, Wednesday 9:30pm";
banner="/images/short/160x300_hs_tinsley.jpg";
width="160";
height="300";
}
document.write('<a href=\"' + url + '\">');
document.write('<img src=\"' + banner + '\" width=')
document.write(width + ' height=' + height + ' ');
document.write('alt=\"' + alt + '\" border=0></a>');