// pas de défilement :
var pas=4
// hauteur de la partie visible
var h_fen="557px"

function scrollmrq(){
if ( parseInt(mrq.style.left) > -h_mrq )
mrq.style.left = parseInt(mrq.style.left)-pas+"px"
else
mrq.style.left=fen.offsetWidth
}

function init_mrq(){
mrq=document.getElementById("marquee"); 
fen=document.getElementById("fenetre"); 
fen.onmouseover=function(){stoc=pas;pas=0};
fen.onmouseout=function(){pas=stoc};fen.style.width=h_fen;
h_mrq=mrq.offsetWidth;
with(mrq.style){position="absolute";left=h_fen;}
setInterval("scrollmrq()",50);
}
window.onload=init_mrq