//ImageRotate.js
<!-- Hide script from old browsers

	adImages = new Array("r-Images/Index-image-01.jpg","r-Images/Index-image-02.jpg","r-Images/Index-image-04.jpg")
	thisAd = 0
	imgCt = adImages.length

	function rotate() {
		if (document.images) {
			thisAd++
			if (thisAd == imgCt) {
				thisAd = 0
			}
			document.adPhoto.src=adImages[thisAd]
		  	setTimeout("rotate()", 5 * 1000)
	  	}
	}

	// End hiding script from old browsers -->
