  ScrollSpeed = 150; 
     ScrollChars = 1;
     function SetupTicker() {
     // add space to the left of the message
      msg = "  Specializovaný prodej střešních krytin a doplňků - otevřeno: Po-St - 7.30-16.00 hod., Čt- 7.30-17.00 hod., Pá- 7.30-16.00 hod. a So- 7.30-12.00 hod.   ";
       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();

