
href = new String
loc = new String
href = document.location.href
loc = href.substring(href.lastIndexOf("/") + 1)

writeLink("Home page", "index.htm", loc, "")
writeLink("About the Club", "about.htm", loc, "")
writeLink("Full programme", "program_2009.htm#thisweek", loc, "")
writeLink("Picture Gallery", "gallery.htm", loc, "")
writeLink("How to get there", "gettingthere.htm", loc, "")
writeLink("For tickets and further details", "contact.htm", loc, "")
writeLink("Run of the Mill", "rotm.htm", loc, "")
writeLink("Links", "links.htm", loc, "")
writeLink("Coproliters", "coproliters.htm", loc, " -<br>Ceilidh Band")

function writeLink(text, page, here, text2) {
	if (here == page) {
		document.write("<p>"+text+text2+"</p>")
	}
	else {
		document.write("<p><a href=\"" + page + "\">" + text + "</a>" + text2 +"</P>")
	}
}

