<!--
function image() {
};
function linkDisplay() {
  /* Enter the link name below. Each entry must have
     a unique number in the "[]" brackets. */
  var links = new Array();
    links[0]=" Home";
    links[1]=" About Us";
    links[2]=" Calendar";
    links[3]=" Articles";
    links[4]=" Contact Us";



  /* Enter the link URL below. Each entry must have
     a unique number in the "[]" brackets which matches
     the entry above. */
  var linkURL = new Array();
    linkURL[0]="index.html";
    linkURL[1]="about.html";
    linkURL[2]="calendar.html";
    linkURL[3]="articles.html";
    linkURL[4]="contact.html";




  for (i=0; i<links.length; i++) {
    document.write("<li>"+links[i].link(linkURL[i])+"</li>");
  }
}



-->
