// 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="http://www.wbnx.com/shows/lux/";
alt="ALL NEW! Life Unexpected, Monday 8pm!";
banner="http://www.wbnx.com/images/bnr/728x90_lux_generic2_new.jpg";
width="728";
height="90";
}
if (ad==2) {
url="http://www.wbnx.com/shows/martha/";
alt="The Martha Stewart Show, Weekdays 10am!";
banner="http://www.wbnx.com/images/bnr/728x90_martha_orn.jpg";
width="728";
height="90";
}
if (ad==3) {
url="http://www.wbnx.com/shows/gsp/";
alt="ALL NEW! Gossip Girl, Monday 9pm!";
banner="http://www.wbnx.com/images/bnr/728x90_gsp_generic_new.jpg";
width="728";
height="90";
}
document.write('<a href=\"' + url + '\">');
document.write('<img src=\"' + banner + '\" width=')
document.write(width + ' height=' + height + ' ');
document.write('alt=\"' + alt + '\" border=0></a>');