// JavaScript Document

function defilement()
{
		var x=parseInt(document.getElementById('contenu').style.left);
		if (!x) x=0;
			if(x<-416)  x=0;
	          
	
	
	document.getElementById('contenu').style.left=(x-1)+"px";
	}
function init()
{
	 window.setInterval(defilement,60);
}
window.onload=init;
