<!--
adImages = new Array("images/Statueprogress1.jpg","images/Statueprogress7.jpg" ,"images/Statueprogress8.jpg","images/Statueprogress9.jpg","images/Statueprogress10.jpg" , "images/Statueprogress11.jpg","images/Statueprogress2a.jpg","images/Statueprogress3a.jpg" , "images/Statueprogress4a.jpg" , "images/Statueprogress5a.jpg")
thisAd = 0
imgCt = adImages.length 

function rotate() {
if (document.images) {
thisAd++
if (thisAd == imgCt) {
thisAd = 0
}
document.adBanner.src=
	adImages[thisAd]
	setTimeout("rotate()", 3 * 1000)
	}
}
//-->
