<!--


	var ci = 1;
	var updateTm;
	
	
	

	function setUpdateTimer(){
		// updateTm = setTimeout("updateIndex()", 4000);
	}


	function updateIndex() {
		if (ci > 5) ci = 1;
		document.getElementById('sx1').style.backgroundImage="url(photos-main/texture-0" + ci + ".jpg)"; 
		document.getElementById('sx2').style.backgroundImage="url(photos-main/texture-0" + ci + ".jpg)"; 
		document.getElementById('px1').src="photos-main/main-photo-0" + ci + ".jpg"; 
		ci = ci + 1; 
		
		updateTm = setTimeout("updateIndex()", 4000);
	}



//-->