﻿document.writeln("  <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" >");
document.writeln("                                                            <tbody>");
document.writeln("                                                                <tr>");
document.writeln("                                                                    <td>");
document.writeln("                                                                        <div id=\"demo\" class=\"moverdiv\">");
document.writeln("                                                                            <table cellspacing=\"0\" cellpadding=\"0\" align=\"left\" border=\"0\" height=\"100%\">");
document.writeln("                                                                                <tbody>");
document.writeln("                                                                                    <tr>");
document.writeln("                                                                                        <td id=\"demo1\">");
document.writeln("                                                                                        </td>");
document.writeln("                                                                                        <td id=\"demo2\">");
document.writeln("                                                                                        </td>");
document.writeln("                                                                                    </tr>");
document.writeln("                                                                                </tbody>");
document.writeln("                                                                            </table>");
document.writeln("                                                                        </div>");
document.writeln("                                                                    </td>");
document.writeln("                                                                </tr>");
document.writeln("                                                            </tbody>");
document.writeln("                                                        </table>");
document.writeln("                                                        <div id=\"movediv\" style=\"display: none;\">");
document.writeln("                                                        </div>");
document.writeln("");
document.writeln("                                                         <script>");
document.writeln("                                                              var speed=100;//速度数值越大速度越慢");
document.writeln("                                                              demo1.innerHTML=ContentDiv.innerHTML;");
document.writeln("                                                              demo2.innerHTML=ContentDiv.innerHTML;");
document.writeln("                                                              function Marquee(){");


document.writeln("  	                                                            if(demo2.offsetWidth-demo.scrollLeft<=0)");
document.writeln("		                                                            demo.scrollLeft-=demo1.offsetWidth");
document.writeln("  	                                                            else{");
document.writeln("		                                                            demo.scrollLeft+=1;");
document.writeln("	                                                            }");

document.writeln("                                                              }");
document.writeln("                                                              var MyMar=setInterval(Marquee,speed)");
document.writeln("                                                              demo.onmouseover=function() {clearInterval(MyMar)}");
document.writeln("                                                              demo.onmouseout=function() {MyMar=setInterval(Marquee,speed)}");
document.writeln("                                                              ");
document.writeln("                                                        </script>");
