<!-- Hide script from old browsers

	adImages = new Array("i/banner01.gif","i/banner02.gif","i/banner03.gif","i/banner04.gif")
	thisAd = 0
	imgCt = adImages.length

	function rotate() {
		if (document.images) {
			thisAd++
			if (thisAd == imgCt) {
				thisAd = 0
			}
			document.adBanner.src=adImages[thisAd]
		  	setTimeout("rotate()", 3 * 1000)
	  	}
	}

// End hiding script from old browsers -->

