  ScrollSpeed = 150; 
     ScrollChars = 1;    
     function SetupTicker() {
     // add space to the left of the message
      msg = "    ..:..  Ruml Beroun - zakázková výroba nerezového zařízení pro gastro provozy na nejmodernějších CNC strojích včetně projektové přípravy, montáže a servisu - tel: +420 602 336 872   ..:..   ";
       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();
