// JavaScript Document: Sitemap
// alert(document.ownerDocument);
var subDir = "";
var myPath = window.location.pathname;
var directories = /about|contact|facilities|funding|links|newsletters|notice|ofsted|prospectus|registration|sessions|term|diary|staff/;
var matchPos1 = myPath.search(directories);
if(matchPos1 != -1)
	//alert("There was a match at position " + matchPos1);
	subDir = "\"../";
else
	//alert("There was no match in the first string");
	subDir = "\"";

document.write("<table class=\"sitemap\"><tr>");
document.write("<td><a href=" + subDir + "index.html\">Home</a></td>");
document.write("<td><a href=" + subDir + "about/index.html\">About Us</a></td>");
document.write("<td><a href=" + subDir + "sessions/index.html\">Sessions</a></td>");
document.write("<td><a href=" + subDir + "funding/index.html\">Funding</a></td>");
document.write("<td><a href=" + subDir + "facilities/index.html\">Facilities</a></td>");
document.write("<td><a href=" + subDir + "prospectus/index.html\">Prospectus</a></td>");
document.write("<td><a href=" + subDir + "ofsted/index.html\">Ofsted</a></td>");
document.write("<td><a href=" + subDir + "registration/index.html\">Registration</a></td>");
document.write("<td><a href=" + subDir + "notice/index.html\">Noticeboard</a></td>");
document.write("</tr><tr>");
document.write("<td><a href=" + subDir + "term/index.html\">Term Details</a></td>");
document.write("<td><a href=" + subDir + "diary/index.html\">Diary</a></td>");
document.write("<td><a href=" + subDir + "contact/index.html\">Contact Us</a></td>");
document.write("<td><a href=" + subDir + "links/index.html\">Links</a></td>");
document.write("<td><a href=" + subDir + "staff/index.html\">Staff</a></td>");
document.write("</tr></table>");
