<!--
// Use the following three variables 
// to set up the message:
// MAY00 "Congratulations Class of 2000! - May 24, 2000!"
// JUN00 "Attention Beavers - Scottsdale High Reunion set for October, 2000 - click the Scottsdale Alumni link for more info!"
// OCT00 "Congratulations Beavers - Scottsdale High Reunion was a big sucess during October 6-8, 2000 - click the Scottsdale Alumni link in case you missed it!"
// NOV00 "Next Total Community Process Committee meeting scheduled for November! Check the TCP pages for details!"
// JUN01 "1981 Sabercats - Our 20 Year Reunion is underway! Get the details from the Class Index Page!"
// OCT08 "1968 Sabercats - Our 40 Year Reunion is underway! Get the details from the Class Index Page!"

var msg = "1968 Sabercats - Our 40 Year Reunion is underway! Get the details from the Class Index Page!"
var delay = 50
var startPos = 100

// Don't change these variables:
var timerID = null
var timerRunning = false
var pos = 0

// Start the scroll
StartScrolling()

function StartScrolling(){
    // Make sure the clock is stopped
    StopTheClock()

    // Pad the message with spaces to 
    // get the "start" position
    for (var i = 0; i < startPos; i++) msg = " " + msg

    // Do the scroll
    DoTheScroll()
}

function StopTheClock(){
    if(timerRunning)
        clearTimeout(timerID)
    timerRunning = false
}

function DoTheScroll(){
    if (pos < msg.length)
        self.status = msg.substring(pos, msg.length);
    else
        pos=-1;
    ++pos
    timerRunning = true
    timerID = self.setTimeout("DoTheScroll()", delay)
}
-->