// Rotate images

<!--

adImages = new Array()

	adImages[0] = new Image(230,132)

	adImages[1] = new Image(230,132)

	adImages[2] = new Image(230,132)

	

	adImages[0].src = "images/RotatingPork230x132.jpg"

	adImages[1].src = "images/RotatingBeef230x132.jpg"

	adImages[2].src = "images/RotatingTurkey230x132.jpg"

//("images/pic_steak.jpg","images/pic_turkey.jpg","images/pic_pork.jpg")

	thisAd = 0

	imgCt = adImages.length



	function rotate() {

		// check if browser supports images

		if (document.images) {

			// check if image is done loading

			if (document.adBanner.complete) {

				// next image

				thisAd++

				if (thisAd == imgCt) {

					thisAd = 0

				}

				document.adBanner.src=adImages[thisAd].src

			}

			// start timer

		  	setTimeout("rotate();", 3 * 1000)

	  	}

	}

	// End hiding script from old browsers -->



function MM_openBrWindow(theURL,winName,features) { //v2.0

  window.open(theURL,winName,features);

}

//-->

