<!--
	aryImages = new Array(
		"images/pink-purple.jpg",
		"images/purple-pink.jpg")
	imgCnt = -1
	arySize = aryImages.length
	
	function changeImg()
	{

		if (window.document.images)
		{
			imgCnt++
			if (imgCnt >= arySize)
			{
				imgCnt=0
			}
		}
		
		sPath = aryImages[imgCnt]
		
		window.document.getElementById("edge1").style.backgroundImage = "url("+sPath+")"; 
		window.document.getElementById("edge2").style.backgroundImage = "url("+sPath+")"; 

		setTimeout("changeImg()", 20)
	}
//-->	



