<!-- 
// Status-line ticker by Dave Methvin, Windows Magazine
// May be used/modified if credit line is retained
// CHANGE THESE TO ALTER THE SCROLL SPEED
ScrollSpeed = 60;  // milliseconds between scrolls
ScrollChars = 1;    // chars scrolled per time period

function SetupTicker() {
  // add space to the left of the message
  msg = "                                                                                                                                              TROOP 982's SCOUT TICKER  . . . .  ";
  // PUT YOUR MESSAGE HERE, USE += TO ADD THEM TOGETHER
  

msg += "The Boy Scout Law:  A Scout is Trustworthy, Loyal, Helpful, Friendly, Courteous, Kind, Obedient, Cheerful, Thrifty, Brave, Clean, and Reverent               ";  
msg += "The Boy Scout Motto: BE PREPARED               ";
msg += "Troop 982 Motto: BE ON-TIME OR GET LEFT BEHIND!               ";
msg += "The Outdoor Code:  As an American, I will do my best to - Be clean in my outdoor manners, Be careful with fire, Be considerate in the outdoors, and Be conservation minded         ";
msg += "The Boy Scout Slogan:  Do a Good Turn Daily!          ";
 
  // 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();

<!-- end -->

