var text = 0;

var message=new Array();
message[0] = "Welcome to Troop 10"
message[1] = "Click on 'NewsFlash!' for upcoming events"
message[2] = "First Aid MB Continues; March 22<sup>nd</sup>"
message[3] = "Troop Meeting; March 22<sup>nd</sup>"
message[4] = "Uniform Exchange; March 22<sup>nd</sup>"
message[5] = "Katy Trail Campout; March 26-28"
message[6] = "Bartle Sign-up; April 5<sup>th</sup>"
message[7] = "Adopt-A-Highway Project; April 10<sup>th</sup>"
message[8] = "Fishing/OA Tapout Campout; April 17<sup>th</sup>"
message[9] = "Sign up for Rocky Mountain High Adventure ASAP"
message[10] = "Sign up for Scuba High Adventure ASAP"




function changeText() {
  if (message.length > 0) {
   document.getElementById("TroopMsg").innerHTML = message[text];
   text++; }
  if (text == message.length) {text = 0; }  // change the # 4 at the left to the maximum # of message lines you want included
   window.setTimeout("changeText()", 3500); }  // change the # on the left to adjust the speed of the
                                               // scroll. The smaller the # the faster the speed


