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]="Key Stage 3";
    links[2]="Key Stage 4";
    links[3]="Key Stage 5";
    links[4]="Enrichment";	
    links[5]="Staff";
    links[6]="Important Dates";
    links[7]="Results";
    links[8]="Resources";


  /* 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]="ks3.html";
    linkURL[2]="ks4.html";
    linkURL[3]="ks5.html";
    linkURL[4]="enrichment.php";
    linkURL[5]="staff.html";
    linkURL[6]="dates.html";
    linkURL[7]="results.html";
    linkURL[8]="resources.html";

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

