var text = 0;

var message=new Array();
message[0] = "Welcome to Troop 10"
message[1] = "Click on 'NewsFlash!' for upcoming events"
message[2] = "Centennial Campout REGISTER NOW!!!"
message[3] = "Summer Camp Records updated on 'Secure Pages'"
message[4] = "Aviation Merit Badge;  August 7<sup>th</sup>"
message[5] = "Annual Troop Picnic;  August 15<sup>th</sup>"
message[6] = "First Troop Meeting;  August 23<sup>rd</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


