var loc = location.pathname

var lastSlash = loc.lastIndexOf('\\')
if (lastSlash  == -1) {
	lastSlash = loc.lastIndexOf('\/')
}

var stringUpToLastSlash = loc.substring(0,lastSlash)

var nextToLastSlash = stringUpToLastSlash.lastIndexOf('\\')
if (nextToLastSlash  == -1) {
	nextToLastSlash = stringUpToLastSlash.lastIndexOf('\/')
}


var whatDirectory = loc.substring(nextToLastSlash+1,lastSlash)

var leader

if (whatDirectory == "events") {
	leader = "../"
} else {
	leader = ""
}

document.write("<div id=\"menu\">")
document.write("<img src=\""+leader+"resources/images/logo.jpg\" width=\"126px\" />")
document.write("<p style=\"margin: 0;\">&nbsp;</p>")
document.write("<ul>")
document.write("<li id=\"home\"><a href=\""+leader+"index.html\">home</a></li>")
document.write("<li id=\"contacts\"><a href=\""+leader+"contacts.htm\">contacts</a></li>")
document.write("<li id=\"training\"><a href=\""+leader+"training.htm\">training</a></li>")
document.write("<li id=\"location\"><a href=\""+leader+"location.htm\">location</a></li>")
document.write("<li id=\"resources\"><a href=\""+leader+"resources.htm\">resources</a></li>")
document.write("<li id=\"results\"><a href=\""+leader+"results.htm\">results</a></li>")
document.write("</ul>")

document.write("<div id='subFooter'>")
document.write("<p>All images &copy; Saracens RC 2005</p>")
document.write("<p>Site design by <a href=\"http://www.google.com\">RS</a>.</p>")
//document.write("<p>If you have any comments or questions about this site then please click ">


//document.write(".")
document.write("</div>")

document.write("</div>")
