
marqueesHeight=92
stopscroll=false;
i1.scrollTop=0;
with(i1){
  style.height=marqueesHeight;
  style.overflowX="visible";
  style.overflowY="hidden";
  noWrap=true;
  onmouseover=new Function("stopscroll=true");
  onmouseout=new Function("stopscroll=false");
}

items=2; preTop=0; currentTop=92; OcurrentTop=currentTop; stoptime=0; staytime=200; timestep=5;
i1.innerHTML+=i1.innerHTML;
function init_srolltext(){
  i1.scrollTop=0;
  setInterval("scrollUp()",timestep);
}init_srolltext();

function scrollUp()
{
  if(stopscroll==true) return;
  currentTop+=1;
  if(currentTop==OcurrentTop+1){
  	stoptime+=1;
  	currentTop-=1;
  	if(stoptime==staytime){
  		currentTop=0;
  		stoptime=0;}}
  else{
	  preTop=i1.scrollTop;
	  i1.scrollTop+=1;
	  if(preTop==i1.scrollTop){
	    i1.scrollTop=OcurrentTop*(items-1);
	    i1.scrollTop+=1;}}
	    
	    

}