﻿// JScript File
<!--
var speedAffiche=50 ;
scrollDiv2.innerHTML=scrollDiv1.innerHTML;
function MarqueeAffiche()
{ 
    if(scrollDiv.scrollTop>=scrollDiv1.scrollHeight)
    { 
        scrollDiv.scrollTop=0 ;
    }
    else
    { 
        scrollDiv.scrollTop++ ;
    } 
} 

var MyMarAffiche=setInterval(MarqueeAffiche,speedAffiche) ;
scrollDiv.onmouseover=function() {clearInterval(MyMarAffiche);} 
scrollDiv.onmouseout=function() {MyMarAffiche=setInterval(MarqueeAffiche,speedAffiche);}
-->
