document.writeln("<script>");
document.writeln("var speed=30;");
document.writeln("var colee2=document.getElementById(\"colee2\");");
document.writeln("var colee1=document.getElementById(\"colee1\");");
document.writeln("var colee=document.getElementById(\"colee\");");
document.writeln("colee2.innerHTML=colee1.innerHTML;");
document.writeln("function Marquee1(){");
document.writeln("if(colee2.offsetTop-colee.scrollTop<=0){");
document.writeln(" colee.scrollTop-=colee1.offsetHeight; ");
document.writeln(" }else{");
document.writeln(" colee.scrollTop++");
document.writeln("}");
document.writeln("}");
document.writeln("var MyMar1=setInterval(Marquee1,speed)");
document.writeln("colee.onmouseover=function() {clearInterval(MyMar1)}");
document.writeln("colee.onmouseout=function(){MyMar1=setInterval(Marquee1,speed)}");
document.writeln("</script>");
