// JScript source code
function showMenu() {
	if (!location.href.match('default'))    document.write('<a href="/">Home</a>');
	if (!location.href.match('dates'))    document.write('<a href="dates.html">Dates</a>');
	if (!location.href.match('hearMusic'))    document.write('<a href="hearMusic.html">Hear Music</a>');
	if (!location.href.match('youTubeSlots'))    document.write('<a href="youTubeSlots.html">Live on youTube</a>');
	if (!location.href.match('contact'))    document.write('<a href="contact.html">Contact</a>');
	if (!location.href.match('biographies'))    document.write('<a href="biographies.html">Biographies</a>');
	
	document.write('<span style="font-size:xx-small;"><br/><br/><br/><br/><br/><br/>website by <a href="http://www.ingenuus.co.uk">Ingenuus</a></span>');	
}

