/*MARQUEE JS DIV*/

// pas de défilement :
var step=1;
// hauteur de la partie visible
var winHeight="77px";

function scrollmrq(){
if ( parseInt(mrq.style.top) > -mrqHeight )
mrq.style.top = parseInt(mrq.style.top)-step+"px";
else {mrq.style.top=winHeight;}
}
function init_mrq(){
mrq=document.getElementById('marquee'); 
win=document.getElementById('marquee-container'); 
win.onmouseover=function(){stoc=step;step=0;};
win.onmouseout=function(){step=stoc;};win.style.height=winHeight;
mrqHeight=mrq.offsetHeight;
with(mrq.style){position="absolute";top=winHeight;}
setInterval("scrollmrq()",50);
}
/*MARQUEE JS DIV*/
