adImages = new Array("Images/cubbiestitle.jpg","Images/sparks.jpg","Images/TTLogo.jpg","Images/24-7logoTrek.jpg","Images/24-7logoJourney.jpg")

thisAd = 0

imgCt = adImages.length

function rotate() {
	if (document.images) {
		thisAd++
		if (thisAd == imgCt) {
			thisAd = 0
		}
		document.adBanner.src=
		adImages[thisAd]
		setTimeout("rotate()", 3 * 1000)
		}
}
