
adImages = new Array("/pics/specials-contact_banner2.gif" , "/pics/specials-contact_banner.gif")
	pageArray = new Array("/specials.html" , "/contact.html")
	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)
			}
    }

	function setContent(thisAd) {   
    document.location.href = pageArray[thisAd];
   }
