
timer=null;
text="+++ Versandkostenfreie Lieferung   +++   CDs ab 1,99€   +++   ";
ii=0;
ll=text.length;

function lauf()
{self.document.laufschrift.zeile.value=text.substring(ii,ll)+" "+text.substring(0,ii);
ii++;
if(ii > ll)ii=0;
      timer=setTimeout("lauf()", 100);
}

function stop()
{wahl='0';
if(timer != null)
         {
         clearTimeout(timer);
         timer=null;
         }
}

function link(zeichen)
{cursorpos = Math.round(zeichen / 7.05)
cursorpos = cursorpos + ii

if(cursorpos > ll)
     {cursorpos = ll - cursorpos
     }

if(cursorpos < 9) var datei = "http://www.streetwear-tostedt.de";
else if(cursorpos < 96) var datei = "www.streetwear-tostedt.de";else if(cursorpos < 117) var datei = "www.streetwear-tostedt.de";

if(datei != '##')
{self.location.href = datei;
}

}
lauf();

