       var Text = "I will                   I create               I am         I do           we are multiple                      we expand          wish   think   dream   taste   want   die   connect   believe   channel                    order me          I serve                           I connect                     I am       I disconnect                      I expand            I come               I adress you";        //alert(document.body.clientwidth);      var Geschwindigkeit = 160;      var Breite = Math.random()*240; // Breite der Animation in der Statusleiste      Breite=Math.round(Breite); // muss unbedingt ne ganzzahl sein, sonst klappts nicht !       var TextLaenge = Text.length; // Anzahl der Zeichen       var Position = 1 - Breite;       function StatusLauftext()      {        Position++;       var Textzustand="";        if (Position == TextLaenge)         {         Position = 1 - Breite;        }       if (Position < 0)         {         for (var Zaehler=1; Zaehler <= Math.abs(Position); Zaehler++)           {           Textzustand = Textzustand + " ";          };         Textzustand = Textzustand + Text.substring(0, Breite - Zaehler + 1);        }        else         {         Textzustand = Textzustand + Text.substring(Position, Breite + Position);        }       window.status = Textzustand;        setTimeout("StatusLauftext()",Geschwindigkeit);      }//-->