function string(st)
{
 var spans=de(st.id).getElementsByTagName('span');
 var stop=false;
 var clear=null;
 for(var i=0;i<spans.length;i++)
 {
  spans[i].style.marginLeft='0px';
  spans[i].id='string'+i;
 }
 function go()
 {
  if(!stop)
  {
   spans[0].style.marginLeft=parseInt(spans[0].style.marginLeft)-st.step+'px';
   if(parseInt(spans[0].style.marginLeft)<=-spans[0].offsetWidth)
   {
    spans[0].style.marginLeft='0px';
    de(st.id).appendChild(de(st.id).removeChild(spans[0]));
   }
   clear=setTimeout(function(){go()},st.speed);
  }
 }
 (function onm()
 {
  de(st.id).onmouseover=function(e)
  {
   if(!browser.ie6&&commonParent([uevt(e).relatedTarget.from,uevt(e).relatedTarget.to],de(st.id)))//ïîòîìêè-äåáèëû õÄ
	return;
   stop=true;
   clearTimeout(clear);
  }
  de(st.id).onmouseout=function(e)
  {
   if(!browser.ie6&&commonParent([uevt(e).relatedTarget.from,uevt(e).relatedTarget.to],de(st.id)))//ïîòîìêè-äåáèëû õÄ
	return;
   stop=false;
   go();
  }
 }());
 return {
  init:function()
  {
   go();
  }
 }
}