adImages = new Array ("images/biography.jpg","images/gallery.jpg","images/photos.jpg","images/contact.jpg")
adURL = new Array("biography.html","gallery.html","photos.html","contact.html")
thisAd = 0
imgCt = adImages.length

function rotate() {
	if (document.images) {
		thisAd++
		if (thisAd == imgCt) {
			thisAd = 0
		}
		document.adBanner.src=adImages[thisAd]
		setTimeout("rotate()", 5 * 1000)
	}
}
function newLocation() {
	document.location.href = "http://www.ivomonte.com/" + adURL[thisAd]
}
