    var width = 0;
	var cwidth = 445;
	var left = 0;
	var speed = 0;
	function moveIt(){
		c = document.getElementById("thcontent");
		left = left + speed;
		if (left>0) left = 0;
		if (left+width<cwidth) left = left - speed;
		c.style.left = left;
		if(speed!=0) setTimeout("moveIt()", 1);
	}
	function stop(){
		speed = 0;
	}

	
/**  ماوس اور عکس **/
function SwapImgOver(ImgId,ImgSrc,ImgName) {
 Image2 = new Image
 Image2.src = ImgSrc + ImgName
 eval('document.getElementById("' + ImgId + '").src = Image2.src') 
}

/** ماوس اوت عکس **/
function SwapImgOut(ImgId,ImgSrc,ImgName) {
 Image1= new Image
 Image1.src = ImgSrc + ImgName
 eval('document.getElementById("' + ImgId + '").src = Image1.src; ')
}
	