﻿// Fichier JScript
// pas de défilement :
var pas=2;
// hauteur de la partie visible
var h_fen="220px";
function scrollmrq()
{

	if ( parseInt(mrq.style.top) > -h_mrq )
	{
		mrq.style.top = parseInt(mrq.style.top)-pas+"px";
	}
	else
	{
		mrq.style.top=parseInt(h_fen)+"px";
	}
}
function init_mrq()
{
    if(document.getElementById("marquee") !=null && document.getElementById("fenetre")!=null)
    {
	    mrq=document.getElementById("marquee"); 
        fen=document.getElementById("fenetre"); 
        fen.onmouseover=function() 
        { 
        stoc=pas; 
        pas=0 
        }; 

        fen.onmouseout=function() 
        { 
        pas=stoc 
        }; 
        fen.style.height=h_fen; 
        h_mrq=mrq.offsetHeight; 
        with (  mrq.style) 
        { 
        position="absolute"; 
        top="80";//h_fen; 
        } 
        setInterval("scrollmrq()",100); 
    }
}

