	<!-- Hide script from old browsers

	adImages = new Array("images/slide-01.jpg","images/slide-02.jpg")
	thisAd = 0
	imgCt = adImages.length

	function rotate() {
		if (document.images) {
			thisAd++
			if (thisAd == imgCt) {
				thisAd = 0
			}
			document.slideshow.src=adImages[thisAd]
		  	setTimeout("rotate()", 2 * 1000)
	  	}
	}

	// End hiding script from old browsers -->