var Timer;
var Pas = 1;
	
	function moveLayer(Sens)
	{
		if(document.getElementById)
			Objet = document.getElementById("scrollingContent");
		else
			Objet = document.all["scrollingContent"];
		if(parseInt(Objet.style.top) + (1*Sens) > 0)
			Objet.style.top = "0px";
		else
			Objet.style.top = (parseInt(Objet.style.top) + (1*Sens)) + "px";
			
		if(document.getElementById("scrollingContent").style.top == "-195px")
		{
			document.getElementById("scrollingContent").style.top = "0";
		}
		
		Timer = setTimeout("moveLayer(" + Sens + ");", 100);
		//setInterval(function(){moveLayer(Sens);}, 100);
	}
