t1=" TEAMWORKNET - EIN Offsetdruck Kalkulations- und Verwaltungssystem - für Windows, Mac OS X und Linux. Jetzt neue Demoversion anfordern! Artikel in Print und Produktion 12 2006 schon gelesen?";
var step=0;
function anim()
{
 if (step <= t1.length) {
  t2 = t1.slice(0,step);
 } else {
  t2 = t1.slice(step-t1.length,t1.length);
 }
 step++;

 if (step > 2 * t1.length) {
  step = step - (2 * t1.length);
 }
 window.status =  t2;

 setTimeout("anim()", Math.random(1)*333);
}
anim();


