// JavaScript Document articleHeight=36; stopscrolla=false; var article1=document.getElementById('article1'); ///////// var article2=document.getElementById('article2'); //////// article1.scrollTop=0; //more javascript from http://www.china-filters.cc with(article1){ style.width=157+"px"; //////// style.height=178+"px"; //////// style.overflowX="visible"; style.overflowY="hidden"; noWrap=true; onmouseover=new Function("stopscrolla=true"); onmouseout=new Function("stopscrolla=false"); } preTopa=0; currentTopa=0; stoptimea=0; function init_srolltext1(){ article2.innerHTML=""; article2.innerHTML+=article1.innerHTML; article1.innerHTML=article2.innerHTML+article2.innerHTML; setInterval("scrollUp1()",40); } function scrollUp1(){ if(stopscrolla==true) return; currentTopa+=1; if(currentTopa==0) { stoptimea+=1; currentTopa-=1; if(stoptimea==50) { currentTopa=0; stoptimea=0; } } else { preTopa=article1.scrollTop; article1.scrollTop+=1; if(preTopa==article1.scrollTop){ article1.scrollTop=article2.offsetHeight-articleHeight; article1.scrollTop+=1; } } } init_srolltext1();