  ScrollSpeed = 150; 
     ScrollChars = 1;    
     function SetupTicker() {
     // add space to the left of the message
      msg = "    ..:.. Jednota SD Hořovice - skupina COOP - velkoobchod, maloobchod, e-shop - potraviny, drogerie, ovoce a zelenina, mléčné výrobky, potřeby  pro dům a zahradu - vlastní síť 73 prodejen "
      msg += "  ..... Využijte našich akčních nabídek! Vysoce zajímavé výrobky a přijatelné ceny ..... ";
        // this starts the ticker
     RunTicker();
     }
     function RunTicker() {
     window.setTimeout('RunTicker()',ScrollSpeed);
     window.status = msg;
     msg = msg.substring(ScrollChars) + msg.substring(0,ScrollChars);
     }
     SetupTicker();

