adImg = new Array("../banners/amazon.gif",
				  "../banners/fogdog1.gif",
				  "../banners/fogdogsoftball.gif",
				  "../banners/cafepress.gif");
adUrl = new Array("http://www.amazon.com/exec/obidos/redirect-home/patricksbaseball",
				  "http://service.bfast.com/bfast/click?bfmid=223938&siteid=40969742&bfpage=baseballstore",
                  "http://service.bfast.com/bfast/click?bfmid=223938&siteid=40969742&bfpage=softballstore",
				  "http://www.cafepress.com/cp/info/storeref.aspx?refby=scorecard");
curDate = new Date();
curSec = curDate.getSeconds();
adNr = curSec % adImg.length;
adTimer = 0;
function rotate(){
	adNr = adNr+1;
	if (adNr >= adImg.length) {
		adNr = 0;
		}
	document.adDsp.src = adImg[adNr];
	adTimer = setTimeout("rotate()",30000);
}
function adJumper(){
	clearTimeout(adTimer);
	window.location.href = adUrl[adNr];
}


