

    ScrollSpeed =250;  // milliseconds between scrolls

    ScrollChars = 1;    // chars scrolled per time period

    function SetupTicker() {

      msg = "  Salon Karina je tu pro vás již přes 13 let  ";

      msg += "  . . . . .  ";

      // this starts the ticker

    RunTicker();

    }

    function RunTicker() {

    window.setTimeout('RunTicker()',ScrollSpeed);

    window.defaultStatus = msg;

    msg = msg.substring(ScrollChars) + msg.substring(0,ScrollChars);

    }

    // Start the ticker code

    SetupTicker();

