<!--
	aryImages = new Array(
		"images/contact-us/IMG_a.jpg",
		"images/contact-us/IMG_h.jpg",
		"images/contact-us/IMG_b.jpg",
		"images/contact-us/IMG_c.jpg",
		"images/contact-us/IMG_f.jpg",
		"images/contact-us/IMG_d.jpg",
		"images/contact-us/IMG_e.jpg",
		"images/contact-us/IMG_g.jpg",
		"dummy")
	imgCnt = -1
	arySize = aryImages.length-1
	
	function changeImg()
	{
		if (window.document.images)
		{
			imgCnt++
			if (imgCnt >= arySize)
			{
				imgCnt=0
			}
		}
		
		window.document.getElementById("imgStudio").src = aryImages[imgCnt]

		setTimeout("changeImg()", 4500)
	}
//-->	

