	$(function(){
		//alert($("#contientimg").width());
		var speedAnim=(((Math.round(($("#contientimg").width()/2500)*2)/2)-1)*10+20)*1500;
		function boucleAnim() {
			$("#contientimg").animate({ left:'-'+($("#contientimg").width()-1117)+'px'}, speedAnim)
			.animate({ left:'0px'}, speedAnim);
			boucleAnim();
		}
		boucleAnim();
	}); 
