  ScrollSpeed = 150; 
     ScrollChars = 1;    
     function SetupTicker() {
     // add space to the left of the message
      msg = "    ...:...  Dřevona - prodej dřevařského materiálu - BAVORYNĚ - tel: 311 686 355, 777 946 276, otevřeno: Po-Čt: 7-15 hod., Pá: 7-16 hod. a So: 8-11 hod.,     BEROUN - tel: 311 622 355, 777 946 276, otevřeno: Po-Pá: 8-16 hod. a v So: 8-11 hod. "
      msg += "    ";
        // this starts the ticker
     RunTicker();
     }
     function RunTicker() {
     window.setTimeout('RunTicker()',ScrollSpeed);
     window.status = msg;
     msg = msg.substring(ScrollChars) + msg.substring(0,ScrollChars);
     }
     SetupTicker();
