// JavaScript Document

adImages = new Array("header1.jpg","header2.jpg","header3.jpg","header4.jpg")
	thisAd = 0
	imgCt = adImages.length

	function rotate() {
		if (document.images) {
			thisAd++
			if (thisAd == imgCt) {
				thisAd = 0
			}
			document.adBanner.src=adImages[thisAd]
		  	setTimeout("rotate()", 4 * 700)
			
            window.onload=rotate 

}
  }	

