

    // CHANGE THESE TO ALTER THE SCROLL SPEED

    ScrollSpeed = 0;  // milliseconds between scrolls

    ScrollChars = 0;    // chars scrolled per time period

    function SetupTicker() {

    // add space to the left of the message

    msg = "     CeRT | Czech e-Racing Team ";

    // PUT YOUR MESSAGE HERE, USE += TO ADD THEM TOGETHER



    // this starts the ticker

    RunTicker();

    }

    function RunTicker() {

    window.setTimeout('RunTicker()',ScrollSpeed);

    window.status = msg;

    msg = msg.substring(ScrollChars) + msg.substring(0,ScrollChars);

    }

    // Start the ticker code

    SetupTicker();


