<!--
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]="<img src='includes/house.png' border='0'> Home";
    links[1]="<img src='includes/group.png' border='0'> About Us";
    links[2]="<img src='includes/calendar.png' border='0'> Calendar";
    links[3]="<img src='includes/document.png' border='0'> Articles";
    links[4]="<img src='includes/email.png' border='0'> 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>");
  }
}



-->
