/*  ------------------------- Baslow Menu --------------------------- */
function menu()
{
var href = document.location.href;
var len = (document.location.hash)?(href.length-document.location.hash.length):href.length;
var start=href.lastIndexOf('/')+1;
var docname=href.substring(start,len);

document.write('<table id="menuBox"><tr>');
document.write('<td align="center" width="100%">');
//<!-- inner table -->
document.write('<table id="menuBox2"><tr>');
document.write('<td id="menuBar">MENU</td>');
document.write('</tr><tr>');
if (docname == "Baslow.html") {
	document.write('<td id="menuChoice">Baslow</td>');
}
else {
	document.write('<td class="menuItem"><a href="Baslow.html">Baslow</a></td>');
}
document.write('</tr><tr>');
if (docname == "Seats1789.html") {
	document.write('<td id="menuChoice">Register of Seats</td>');
}
else {
	document.write('<td class="menuItem"><a href="Seats1789.html">Register of Seats</a></td>');
}
document.write('</tr><tr>');
if (docname == "PhotoGallery.html") {
	document.write('<td id="menuChoice">Photo Gallery</td>');
}
else {
	document.write('<td class="menuItem"><a href="PhotoGallery.html">Photo Gallery</a></td>');
}
document.write('</tr><tr>');
if (docname == "Postcards.html") {
	document.write('<td id="menuChoice">Old Postcards</td>');
}
else {
	document.write('<td class="menuItem"><a href="Postcards.html">Old Postcards</a></td>');
}
document.write('</tr><tr>');
if (docname == "MIs.html") {
	document.write('<td id="menuChoice">Memorial Inscriptions</td>');
}
else {
	document.write('<td class="menuItem"><a href="MIs.html">Memorial Inscriptions</a></td>');
}
document.write('</tr><tr>');
document.write('<td class="menuBar2"><a href="../index.html">Derbyshire</a></td>');
document.write('</tr><tr>');
document.write('<td class="menuBar2"><a href="../../../index.html">WT Home Page</a></td>');
document.write('</tr></table>');
// <!--inner table-->
document.write('</td>');
document.write('</tr></table><p />');
}
