<!--
	aryImages = new Array(
		"images/say-2009/asheville-flowers.jpg",
		"images/say-2009/studio/IMG_0423_crop_small.jpg",
		"images/say-2009/say-students/IMG_0641.jpg",
		"images/say-2009/say-students/_IMG_0643.jpg",
		"images/say-2009/say-students/EOS-024.jpg",
		"images/say-2009/say-students/EOS-023.jpg",
		"images/say-2009/say-students/_IMG_0644.jpg",
		"images/say-2009/say-students/_IMG_0646.jpg",
		"images/say-2009/say-students/IMG_0647.jpg",
		"images/say-2009/say-students/IMG_0648.jpg",
		"images/say-2009/say-students/IMG_0650.jpg",
		"images/say-2009/say-students/IMG_0651.jpg",
		"images/say-2009/say-students/IMG_0652.jpg",
		"images/say-2009/say-students/_IMG_0661_.jpg",
		"images/say-2009/say-students/_IMG_0662.jpg",
		"images/say-2009/say-students/_IMG_0649.jpg")
	imgCnt = -1
	arySize = aryImages.length
	
	function changeImg()
	{
		if (window.document.images)
		{
			imgCnt++
			if (imgCnt >= arySize)
			{
				imgCnt=0
			}
		}
		
		window.document.getElementById("imgStudents").src = aryImages[imgCnt]

		setTimeout("changeImg()", 4500)
	}
//-->	

