// JavaScript Document

document.writeln("			 </td>");
document.writeln("                  </tr>");
document.writeln("              </table></td>");
document.writeln("              <td id=\"marquePic2\" valign=\"top\" style=\"overflow:hidden;\"></td>");
document.writeln("            </tr>");
document.writeln("          </tbody>");
document.writeln("        </table>");
document.writeln("    </div>");


 var speed=65 
        document.getElementById("marquePic2").innerHTML=document.getElementById("marquePic1").innerHTML 
        function Marquee()
        { 
        if(document.getElementById("Div_PaintingAppreciation_List1").scrollLeft>=document.getElementById("marquePic2").offsetWidth)
        { 
        document.getElementById("Div_PaintingAppreciation_List1").scrollLeft=0 
        }
        else{ 
            document.getElementById("Div_PaintingAppreciation_List1").scrollLeft++ 
            }
        } 
        var MyMar=setInterval(Marquee,speed) 
        document.getElementById("Div_PaintingAppreciation_List1").onmouseover=function() {clearInterval(MyMar)} 
        document.getElementById("Div_PaintingAppreciation_List1").onmouseout=function() {MyMar=setInterval(Marquee,speed)} 

<!--滚动结束-->
