//* rotating banner script //*
	ronocd1 = new Array("resources/ronoorig.jpg","resources/smwaves2.jpg")
	thisAd9 = 0
	imgCt9 = adImages9.length
	
	function rotate() {
		if (document.images) {
			thisAd9++
		if (thisAd9 == imgCt9) {
				thisAd9 = 0
		}
		document.ronocd.src=ronocd1[thisAd9]
			
			
		  setTimeout("rotate()", 3 * 1000)
	  	}
	}

	