var text = 0;

var message=new Array();
message[0] = "Welcome to Troop 10"
message[1] = "Click on 'NewsFlash!' for upcoming events"
message[2] = "Troop Committee Meeting; February 5<sup>th</sup> AT 3:00 pm"
message[3] = "Junior Leadership Training; February 6<sup>th</sup>"
message[4] = "Patrol Leader Council Meeting; February 6<sup>th</sup>"
message[5] = "Leawood Flag Duty - Penguin Patrol; February 6<sup>th</sup>"
message[6] = "Communications Merit Badge; February 13<sup>th</sup>"
message[7] = "Troop Meeting; February 13<sup>th</sup>"
message[8] = "New Scout Parent's Orientation; February 13<sup>th</sup>"
message[9] = "Uniform Exchange; February 13<sup>th</sup>"
message[10] = "Omaha Zoo Campout; February 18<sup>th</sup>"






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



