/////////top image rotate script /////////////////////

var image2 = "images/bot_top_image_bushman.jpg"
var image3 = "images/bot_top_image_giraffe.jpg"


var image6 = "images/bot_top_image_sunset_delta_1.jpg"
adImages1 = new Array(image2,image3,image6)
thisAd1 = 0
imgCt1 = adImages1.length
function rotate()
	{
	if(document.images)
		{
		thisAd1++
		if(thisAd1 == imgCt1)
			{
			thisAd1 = 0
			}
		}
		document.bot_top_image.src = adImages1[thisAd1]
		setTimeout("rotate()", 7 * 1000)
	}