<!-- Begin
var how_many_ads = 10;
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 2011";
banner="banner-sxsw.jpg";
width="265";
height="246";
}
if (ad==2) {
txt="Advertisement";
url="http://www.greygoose.com/";
alt="Grey Goose";
banner="banner-greygoose.jpg";
width="265";
height="246";
}
if (ad==3) {
txt="Advertisement";
url="http://www.hlsr.com/";
alt="Houston Livestock Show and Rodeo";
banner="banner-rodeo.jpg";
width="265";
height="246";
}
if (ad==4) {
txt="Advertisement";
url="http://www.ncaa.com/";
alt="NCAA 2011";
banner="banner-ncaa2011.jpg";
width="265";
height="246";
}
if (ad==5) {
txt="Advertisement";
url="http://www.karatekid-themovie.com/";
alt="The Karate Kid 2010";
banner="banner-karatekid.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.jean-michelbasquiattheradiantchild.com/";
alt="Jean-Michel Basquiat - The Radiant Child";
banner="banner-basquiat.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.mtv.com/ontv/vma/2010/";
alt="2010 MTV Video Music Awards";
banner="banner-mtvma.jpg";
width="265";
height="246";
}
if (ad==10) {
txt="Advertisement";
url="http://www.houstontexans.com/";
alt="Houston Texans";
banner="banner-texans.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=00CCFF>' + txt + '</font></small></a>');
document.write('</center>');
// End -->
