var speed=20;
var des2=document.getElementById("design2");
  des2.innerHTML=document.getElementById("design1").innerHTML;
function Marquee2()
{
if(des2.offsetTop-document.getElementById("design").scrollTop<=0)
document.getElementById("design").scrollTop-=document.getElementById("design1").offsetHeight;
else
{
document.getElementById("design").scrollTop++;
}
}
var MyMar2=setInterval(Marquee2,speed);
document.getElementById("design").onmouseover=function()
{
clearInterval(MyMar2);
}
document.getElementById("design").onmouseout=function()
{
MyMar2=setInterval(Marquee2,speed);
}


////¹ã¸æflashÌæ»»
// var focus_width=297;
// var focus_height=350;
//    var text_height=0;
//    var swf_height = focus_height+text_height;
//     var pics='/uploadfiles/article/titleimages/20090110171031410.jpg|/uploadfiles/article/titleimages/20090110171439570.jpg|/uploadfiles/article/titleimages/20090110172132354.jpg';
//    var links='/article/rxjb/200901/200901102763.shtml|/article/rcjb/200901/200901102741.shtml|/article/rxjb/200901/200901102748.shtml';
//    var texts='||';
//    
//    document.getElementById("right_img").innerHTML='<object ID="focus_flash" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+ focus_width +'" height="'+ swf_height +'">'
//	+'<param name="allowScriptAccess" value="sameDomain"><param name="movie" value="http://www.panjk.com/template/images/pixviewer_imgbook.swf"><param name="quality" value="high"><param name="bgcolor" value="#E7E7E7">'
//	+'<param name="menu" value="false"><param name=wmode value="opaque">'
//	+'<param name="FlashVars" value="pics='+pics+'&links='+links+'&texts='+texts+'&borderwidth='+focus_width+'&borderheight='+focus_height+'&textheight='+text_height+'">'
//	+'<embed ID="focus_flash" src="http://www.panjk.com/template/images/pixviewer_imgbook.swf" wmode="opaque" FlashVars="pics='+pics+'&links='+links+'&texts='+texts+'&borderwidth='+focus_width+'&borderheight='+focus_height+'&textheight='+text_height+'" menu="false" bgcolor="#E7E7E7" quality="high" width="'+ focus_width +'" height="'+ focus_height +'" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>';


