marqueesHeight=18;
stopscroll=false;
with(icefable1){
    style.width=280;
    style.height=marqueesHeight;
    style.overflowX="visible";
    style.overflowY="hidden";
    noWrap=true;
    onmouseover=new Function("stopscroll=true");
    onmouseout=new Function("stopscroll=false");
   }
   preTop=0; currentTop=18; stoptime=0;
   icefable1.innerHTML+=icefable1.innerHTML;


function init_srolltext(){
   icefable1.scrollTop=0;
   setInterval("scrollUp()",25);
}init_srolltext();

function scrollUp(){
   if(stopscroll==true) return;
   currentTop+=1;
   if(currentTop==19)
   {
    stoptime+=1;
    currentTop-=1;
    if(stoptime==50)
    {
     currentTop=0;
     stoptime=0;
    }
   }
   else {
    preTop=icefable1.scrollTop;
    icefable1.scrollTop+=1;
    if(preTop==icefable1.scrollTop){
      icefable1.scrollTop=18;
      icefable1.scrollTop+=1;

    }
   }

}
