// --------------------Scrolling Message---------------------

var ms0  = "                                        Hello.....            ";
var ms1  = "Welcome to Kamloops.....";
var ms2  = "We are located in the south central interior of British Columbia, Canada.....";
var ms3  = "The Kamloops Amateur Radio Club meets on the first Wednesday of each month at the St. Georges church at the intersection of Royal Ave. and Knox St. in North Kamloops..... ";
var ms4  = "";
var ms5  = "Any and all guests are more than welcome.....";
var ms6  = "If you would like more information about Kamloops or the KARC, please click on the link under the KARC logo above.....";
var ms7  = "                                                                                ";
var msg=ms0+ms1+ms2+ms3+ms4+ms5+ms6+ms7;

var banPeriod;

function banner(){
  msg=msg.substring(1,msg.length)+msg.substring(0,1);
  document.banner.text.value=msg;
  banPeriod=setTimeout("banner()",100);
}

