// 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="/shows/better/";
alt="The Better Show, Weekdays 8am";
banner="/images/bnr/728x90_better.jpg";
width="728";
height="90";
}
if (ad==2) {
url="/shows/dailybuzz/";
alt="The Daily Buzz, Weekdays 6-8am";
banner="/images/bnr/728x90_db_team.jpg";
width="728";
height="90";
}
if (ad==3) {
url="http://www.revol.com";
alt="Revol";
banner="/images/bnr/728x90_revol.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" style="-webkit-border-bottom-right-radius:20px; -webkit-border-bottom-left-radius:20px; -moz-border-radius-bottomright:20px; -moz-border-radius-bottomleft:20px; border-bottom-right-radius:20px; border-bottom-left-radius:20px;"></a>');
