<!-- 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) {
txt="Advertisement";
url="http://www.sxsw.com/";
alt="SXSW Austin 2010";
banner="banner-sxsw.jpg";
width="265";
height="246";
}
if (ad==2) {
txt="Advertisement";
url="www.greygoose.com/";
alt="Grey Goose";
banner="banner-greygoose.jpg";
width="265";
height="246";
}
if (ad==3) {
txt="Advertisement";
url="http://www.nojazzfest.com/";
alt="New Orleans Jazz Festival 2010";
banner="banner-nojazzfest.jpg";
width="265";
height="246";
}
if (ad==4) {
txt="Advertisement";
url="http://www.ifest.org/";
alt="iFest 2010";
banner="banner-ifest.jpg";
width="265";
height="246";
}
if (ad==5) {
txt="Advertisement";
url="http://www.nfl.com/";
alt="NFL Champs Saints";
banner="banner-saints.jpg";
width="265";
height="246";
}
if (ad==6) {
txt="Advertisement";
url="http://www.heineken.com/";
alt="Heineken";
banner="banner-heineken.jpg";
width="265";
height="246";
}
if (ad==7) {
txt="Advertisement";
url="http://www.erykahbadu.com/";
alt="Erykah Badu New Album";
banner="banner-badu.jpg";
width="265";
height="246";
}
if (ad==8) {
txt="Advertisement";
url="http://www.northtexassuperbowl.com/";
alt="Super Bowl XLV";
banner="banner-superbowl2.jpg";
width="265";
height="246";
}
if (ad==9) {
txt="Advertisement";
url="http://www.hlsr.com/";
alt="Houston Livestock Show and Rodeo";
banner="banner-rodeo.jpg";
width="265";
height="246";
}
document.write('<center>');
document.write('<a href=\"' + url + '\" target=\"_blank\">');
document.write('<img src=\"' + banner + '\" width=')
document.write(width + ' height=' + height + ' ');
document.write('alt=\"' + alt + '\" border=0><br>');
document.write('<small><font color=FF00CC>' + txt + '</font></small></a>');
document.write('</center>');
// End -->
