  ScrollSpeed = 150; 
     ScrollChars = 1;    
     function SetupTicker() {
     // add space to the left of the message
        msg = "     Reprezentační prodejna -";
       msg += " Hradec Králové 3, Eliščino nábřeží 375 -";
      msg += " volejte: 776 030 303 nebo 495 052 223        ";
       // this starts the ticker
     RunTicker();
     }
     function RunTicker() {
     window.setTimeout('RunTicker()',ScrollSpeed);
     window.status = msg;
     msg = msg.substring(ScrollChars) + msg.substring(0,ScrollChars);
     }
     SetupTicker();
