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]="Philosophy";
    links[3]="KS2 and KS3 Vocabulary";
	links[4]="KS3";
	links[5]="KS4";
	links[6]="KS5";	
	links[7]="Exams and Results";
	links[8]="Resources";
	links[9]="Gallery";
	links[10]="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]="http://www.dohacollege.com/departments/science/index.html";
    linkURL[1]="http://www.dohacollege.com/departments/science/aim.html";
    linkURL[2]="http://www.dohacollege.com/departments/science/philosophy.html";
    linkURL[3]="http://www.dohacollege.com/departments/science/ks2-ks3-voc.html";
	linkURL[4]="http://www.dohacollege.com/departments/science/ks3.html";
	linkURL[5]="http://www.dohacollege.com/departments/science/ks4.html";
	linkURL[6]="http://www.dohacollege.com/departments/science/ks5.html";
	linkURL[7]="http://www.dohacollege.com/departments/science/exam-result.html";
	linkURL[8]="http://www.dohacollege.com/departments/science/resources.html";
	linkURL[9]="http://www.dohacollege.com/departments/science/gallery.html";
	linkURL[10]="http://www.dohacollege.com/departments/science/staff.html";
  for (i=0; i<links.length; i++) {
    document.write("<li>"+links[i].link(linkURL[i])+"</li>");
  }
}

