<!---

// script to rotate images
//---------------------------------------------------------------


adImages = new Array("images/top_table_slide3.jpg", "images/top_table_slide1.jpg", "images/top_table_slide2_new.jpg")

thisAd = 0
imgCt = adImages.length

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


//-->
