adImages = new Array("cms/images/banner1.gif", "cms/images/banner2.gif", "cms/images/banner3.gif")
adURL = new Array("www.genitope.com/banner1.html", "ir.genitope.shaneandpeter.com/phoenix.zhtml?c=142124&p=irol-newsArticle&t=Regular&id=496768&", "www.genitope.com/banner3.html")
thisAd = 0
imgCt = adImages.length
                                                
function rotate() {
	if (document.images) {
		thisAd++
		if (thisAd == imgCt) {
			thisAd = 0
		}
		document.adBanner.src= adImages [thisAd]
		setTimeout("rotate()", 4 * 1000)
	}
}

function newLocation() {
	document.location.href = "http://" + adURL[thisAd]
}