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]="Curriculum";
    links[2]="Reading";
    links[3]="Guided Reading";
	links[4]="Book Week";
	links[5]="Photo Gallery";

  /* 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]="curriculum.html";
    linkURL[2]="reading.html";
    linkURL[3]="g-reading.html";
	linkURL[4]="book-week.html";
	linkURL[5]="gallery.html";

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

