  ScrollSpeed = 150; 
     ScrollChars = 1;    
     function SetupTicker() {
     // add space to the left of the message
      msg = "    ..:.. Hospodaření v našich lesích bylo oceněno v roce 2002 udělením mezinárodně platného certifikátu a Lesní a rybniční správa Zbiroh byla jednou z prvních 5 firem v České republice, kterým bylo toto ocenění vydáno.    ..:..   ";
       msg += "  ";
      msg += "   ";
        // this starts the ticker
     RunTicker();
     }
     function RunTicker() {
     window.setTimeout('RunTicker()',ScrollSpeed);
     window.status = msg;
     msg = msg.substring(ScrollChars) + msg.substring(0,ScrollChars);
     }
     SetupTicker();
