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]="Aims";
    links[2]="Key Stage 3";
    links[3]="Key Stage 4";
    links[4]="Key Stage 5";
	links[5]="Resources";
	links[6]="Staff";
	links[7]="Dept Home";

  /* 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]="aims.html";
    linkURL[2]="dt-keystage3.html";
    linkURL[3]="dt-keystage4.html";
    linkURL[4]="dt-keystage5.html";
	linkURL[5]="dt-resources.html";
	linkURL[6]="staff.html";
	linkURL[7]="/departments/";

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

