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]="Field Trips";
	links[5]="Students' Works";
	links[6]="Glossary";
	links[7]="Fun Pages";
	links[8]="Web Resources";
	links[9]="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]="ks3.php";
    linkURL[2]="ks4.php";
    linkURL[3]="ks5_as.php";
	linkURL[4]="field_trip.html";
	linkURL[5]="#";
	linkURL[6]="#";
	linkURL[7]="#";
	linkURL[8]="#";
	linkURL[9]="staff.html";
	
  for (i=0; i<links.length; i++) {
    document.write("<li>"+links[i].link(linkURL[i])+"</li>");
  }
}

