/*  ----------------------- Bradwell 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 == "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 == "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('<td class="menuItem" style="color:silver">Memorial Inscriptions</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></tr><tr>');
document.write('<td id="menuSep">See also<br />');
document.write('Andre\'s website<br clear="all" />');
document.write('<a href="http://www.theHallamTree.com/">');
document.write('<img src="/images/hallamtreelogosm.jpg" alt="The Hallam Tree" width="160" height="35"');
document.write('align="top" border="0" /></a><br />');
document.write('<a href="http://www.theHallamTree.com/">The Hallam Tree</a></td>');
document.write('</tr></table><p />');
}
