  ScrollSpeed = 150; 
     ScrollChars = 1;    
     function SetupTicker() {
     // add space to the left of the message
      msg = "    ..:.. Naší specialitou je strojní čištění kanalizace a revize potrubí TV kamerou - velmi přesné a rychlé.   ";
       msg += "  ..:..     Pro bližší informace volejte tel: 603 515 447   ..:..   ";
      msg += "     ";
        // this starts the ticker
     RunTicker();
     }
     function RunTicker() {
     window.setTimeout('RunTicker()',ScrollSpeed);
     window.status = msg;
     msg = msg.substring(ScrollChars) + msg.substring(0,ScrollChars);
     }
     SetupTicker();

