adImages = new Array("images/serenity.jpg","images/serenity2.jpg","images/serenity3.jpg")
   thisAd = 0
	imgCt = adImages.length

	function rotate() {
		if (document.images) {
			thisAd++
			if (thisAd == imgCt) {
				thisAd = 0
			}
			document.adBanner.src=adImages[thisAd]
		  	setTimeout("rotate()", 6 * 1000)
	  	}
	}
