marqueesWidth=810;
stopscroll3=false;
with(marquee_pic){
style.height=0;
style.width=marqueesWidth;
style.overflowX="hidden";
style.overflowY="visible";
noWrap=true;
onmouseover=new Function("stopscroll3=true");
onmouseout=new Function("stopscroll3=false");
}
document.write('<div id="templayer" style="position:absolute;z-index:1;visibility:hidden"></div>');
preLeft=0; currentLeft=0; stopscroll=false;
function init(){
//templayer.innerHTML="";
//templayer.innerHTML+=marquee_pic.innerHTML;
//marquee_pic.innerHTML+=templayer.innerHTML;
setInterval("scrollLeft()",20);
}
init();
function scrollLeft(){
if(stopscroll3==true) return;
preLeft=marquee_pic.scrollLeft;
marquee_pic.scrollLeft+=1;
if(preLeft==marquee_pic.scrollLeft){
  marquee_pic.scrollLeft=templayer.offsetWidth-marquee_pic+1;
}
}
