﻿var scrollTxt = "";
var pos = 0;
function initScroll(msg) {
    scrollTxt = msg;
    pos = 1;
    scrollIn();
}

function scrollIn() {
    window.status = scrollTxt.substring(pos, scrollTxt.length) + scrollTxt.substring(0, pos);
    if (pos >= scrollTxt.length) {
        pos = 0;
        window.setTimeout("scrollIn()", 2000);
    } else {
        pos++;
        window.setTimeout("scrollIn()", 100);
    }
}

if (window.status == '') initScroll("The Calendar shows upcoming events and training opportunities ... Check the Training Academy page for class details.                                                                      ");
// This script used to scroll message across the bottom
// status bar