
<!-- Hide from old browsers
adImages = new Array("img/banner1.jpg","img/banner2.jpg","img/banner3.jpg","img/banner4.jpg","img/banner5.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 * 1200)
	}
}
// End hide script from old browsers -->

