adImages = new Array("images/index_page/banner1.jpg","images/index_page/banner2.jpg", "images/index_page/banner3.jpg")
	thisAd = 0
	imgCt = adImages.length

	function rotate() {
		if (document.images) {
			thisAd++
			if (thisAd == imgCt) {
				thisAd = 0
			}
			document.adBanner.src=adImages[thisAd]
		  	setTimeout("rotate()", 2 * 1000)
	  	}
	}



function newWindow(largejpg) {
		largeWindow = window.open(largejpg, "largeWin", "width=400,height=400")
		largeWindow.focus()
	}



