
	adImages = new Array("pix/home1.jpg","pix/home2.jpg","pix/home3.jpg")
	thisAd = 0
	imgCt = adImages.length

	function rotate() {
		if (document.images) {
			thisAd++
			if (thisAd == imgCt) {
				thisAd = 0
			}
			document.adBanner.src=adImages[thisAd]
		  	setTimeout("rotate()", 4 * 1000)
	  	}
	}

	// End hiding script from old browsers -->