
adImages = new Array("bears.jpg", "heman.jpg", "santa.jpg")
thisAd = 0
imgCt = adImages.length

function rotate() {
	if (document.images) {	
		if (document.adBanner.complete) {
		thisAd++
			if (thisAd == imgCt) {
				thisAd = 0
			}
		document.adBanner.src= adImages[thisAd]
		}
	}
}


