/////////top image rotate script /////////////////////
var image1 = "images/nam_top_image_cheetah.jpg"
var image2 = "images/nam_top_image_people_rocks.jpg"
var image4 = "images/nam_top_image_tree_hills.jpg"

adImages1 = new Array(image2,image1,image4)
thisAd1 = 0
imgCt1 = adImages1.length
function rotate()
	{
	if(document.images)
		{
		thisAd1++
		if(thisAd1 == imgCt1)
			{
			thisAd1 = 0
			}
		}
		document.nam_top_image.src = adImages1[thisAd1]
		setTimeout("rotate()", 7 * 1000)
	}
