var Timer;
var Pas = 3;
function moveLayer(Sens) {
	Objet=document.getElementById("liste");
    if(parseInt(Objet.style.top) + (Pas*Sens)>0)  {
		clearTimeout(Timer);
	}
	else if(parseInt(Objet.style.top) + (Pas*Sens)<-(document.getElementById("scrollbar").offsetHeight+35)) {
		clearTimeout(Timer);
	}
    else {
        Objet.style.top = (parseInt(Objet.style.top) + (Pas*Sens)) + "px";
	}
	Timer = setTimeout("moveLayer(" + Sens + ");", 30);
}
function url_expo(page,numero){
	pos_liste=document.getElementById("liste").style.top;
	window.location='index.php?page='+page+'&numero='+numero+'&pos_liste='+pos_liste;
}