/*  ----------------------- Huntley 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">Gloucestershire</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 />');
}