		var pos=0;
		var startpos;
		var t;
		function StartMovePic()
		{
			startpos = parseInt(document.getElementById('photoConatiner').style.left);
			t=setTimeout("movePic();",1);
		}
		function movePic()
		{
			pos =parseInt(document.getElementById('photoConatiner').style.left);
			if(startpos+92 > pos)
			{
				var speed = Math.abs(pos - startpos+92)/20;

				document.getElementById('photoConatiner').style.left= (parseInt(document.getElementById('photoConatiner').style.left)+speed)+'px';
				t=setTimeout("movePic();",1);
			}
			else
			{
				document.getElementById('photoConatiner').style.left=startpos+92+"px"
				clearTimeout(t);
			}
		}

		function StartMovePicLeft()
		{
			startpos = parseInt(document.getElementById('photoConatiner').style.left);
			t=setTimeout("movePicLeft();",1);
		}
		function movePicLeft()
		{
			pos =parseInt(document.getElementById('photoConatiner').style.left);
			if(startpos-92 < pos)
			{
				var speed = Math.abs(pos - startpos-92)/20;

				document.getElementById('photoConatiner').style.left= (parseInt(document.getElementById('photoConatiner').style.left)-speed)+'px';
				t=setTimeout("movePicLeft();",1);
			}
			else
			{
				document.getElementById('photoConatiner').style.left=startpos-92+'px';
				clearTimeout(t);
			}
		}

