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]="English@ Key Stages";
    links[2]="Entry & Assessment";
    links[3]="Results";
    links[4]="Resources";
    links[5]="Gallery";
	links[6]="English Staff";

  /* 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]="keystages.html";
    linkURL[2]="assess.html";
    linkURL[3]="results.html";
    linkURL[4]="resource.php";
    linkURL[5]="gallery_index.html";
	linkURL[6]="staff.php";

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

