<!-- Begin
var how_many_ads = 3;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;
if (ad==1) {
wCity="Phoenix, AZ";
wTemp="<strong>Temp:</strong> Hot as Hell<br><strong>Sky:</strong> No clouds... ever";
alt="Phoenix, AZ Weather";
wImage="phoenix.png";
}
if (ad==2) {
wCity="Antartica";
wTemp="<strong>Temp:</strong> 95&deg; F<br><strong>Sky:</strong>Clear and Sunny";
alt="Antartica Weather";
wImage="antartica.png";
}
if (ad==3) {
wCity="Hell";
wTemp="<strong>Temp:</strong> 2&deg; F<br><strong>Sky:</strong> Chance of snow 90%";
alt="Hell Weather";
wImage="hell.png";
}
document.write('<div class=\"floatLeftNoPadding\"><img src=\"graphics/weather/' + wImage + '\" width=\"84\" height=\"79\" alt=\"' + alt + '\" border=\"0\"></div> ');
document.write('<div class="fourteenText topPadding10"><strong>' + wCity + '</strong></div>');
document.write('<div class="topPadding10">' + wTemp +'</div>');
// End -->