document.write("<table align=center width=100% border=0 cellpadding=0 cellspacing=0>");
document.write("    <tr> ");
document.write("     <td width=100% height=90 align=center class=color3>");
document.write("      <div id=demo style=overflow:hidden;width:760;align=center>");
document.write("        <table border=0 align=center cellpadding=1 cellspacing=1 cellspace=0 >");
document.write("         <tr>");
document.write("           <td valign=top id=marquePic1> ");
document.write("             <table width=100% border=0 cellspacing=0 cellpadding=0>");
document.write("               <tr align=center> ");
document.write("                <td><img src=images/01.jpg height=137 hspace=2 border=0></td>");
document.write("                <td><img src=images/02.jpg height=137 hspace=2 border=0></td>");
document.write("                <td><img src=images/03.jpg height=137 hspace=2 border=0></td>");
document.write("                <td><img src=images/04.jpg height=137 hspace=2 border=0></td>");
document.write("                <td><img src=images/05.jpg height=137 hspace=2 border=0></td>");
document.write("                <td><img src=images/06.jpg height=137 hspace=2 border=0></td>");
document.write("                <td><img src=images/07.jpg height=137 hspace=2 border=0></td>");
document.write("                <td><img src=images/08.jpg height=137 hspace=2 border=0></td>");
document.write("                <td><img src=images/09.jpg height=137 hspace=2 border=0></td>");
document.write("    		 </tr>");
document.write("  	        </table>");
document.write("           </td>");
document.write("	      <td id=marquePic2 valign=top></td>");
document.write("         </tr>");
document.write("        </table>");
document.write("       </div>");
document.write("      </td>");
document.write("    </tr>");
document.write("  </table>");
var speed=30;
marquePic2.innerHTML=marquePic1.innerHTML;
function Marquee(){ 
if(demo.scrollLeft>=marquePic1.scrollWidth){ 
demo.scrollLeft=0;
}else{ 
demo.scrollLeft++;
} 
} 
var MyMar=setInterval(Marquee,speed) 
demo.onmouseover=function() {clearInterval(MyMar)} 
demo.onmouseout=function() {MyMar=setInterval(Marquee,speed)} 