/*  ----------------------- Llanvair Discoed Menu --------------------------  */
function menu()
{
// note: probably unnecessary to allow for URLs with links to internal 
// anchors... shucks, oh who cares? Belt & braces...
var href = document.location.href;
var len = (document.location.hash)?document.location.hash: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">Monmouthshire</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 clear="all" />');
document.write('<a href="http://www.churchcrawler.co.uk/">');
document.write('<img src="/images/churchcrlogosmall.jpg" alt="Visit Church Crawler" width="172" height="65"');
document.write('align="top" border="0" /></a></td>');
document.write('</tr><tr>');
document.write('<td><center><a href="http://www.flickr.com/photos/churchcrawler/">');
document.write('Church Crawler\'s<br />Flickr site</a></center></td>');
document.write('</tr></table><p />');
}
