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]="Primary ICT";
    links[2]="Key Stage 3";
    links[3]="Key Stage 4";
	links[4]="GCE in Applied ICT";
	links[5]="New IGCSE";
	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]="primaryict.html";
    linkURL[2]="ks3.html";
    linkURL[3]="ict-y9-11.html";
	linkURL[4]="ict-gce.html";
	linkURL[5]="igcse.html";
	linkURL[6]="staff.html";
	linkURL[7]="/departments/";

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

