/* ------------------ load Thumbnails for menu popups ----------------  */
function LoadThumbs() {
SetThumbtype('e');
SetupFoto('ChatsHouse', 'Chatsworth House', 
'Chatsworth House',
'Don &amp; Sheila Rimmington', '2000');
SetupFoto('Deer', 'Deer in Chatsworth Park', 
'Deer in Chatsworth Park',
'Don &amp; Sheila Rimmington', '2000');
SetupFoto('Springers', 'Springer Spaniels in Edensor', 
'Springer Spaniels in Edensor',
'Don &amp; Sheila Rimmington', '2000');
// the above are common: the following is unique to 'ChatsworthWalk.html'
SetupFoto('Chatsmap', 'Sketch Map for our Chatsworth Walk', 
'Sketch Map for our Chatsworth Walk',
'Don &amp; Sheila Rimmington', '2000');
}
/*  -------------------------- Edensor 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);
var maxthumbs = 0;
if (docname == "ChatsworthWalk.html" || docname == "MIs.html" || docname == "Edensor.html") {
	maxthumbs = 1;
}
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 == "Edensor.html") {
	document.write('<td id="menuChoice">Edensor</td>');
}
else {
	document.write('<td class="menuItem"><a href="Edensor.html">Edensor</a></td>');
}
document.write('</tr><tr>');
if (docname == "ChatsworthWalk.html") {
	document.write('<td id="menuChoice">Chatsworth Park Walk</td>');
}
else {
	document.write('<td class="menuItem"><a href="ChatsworthWalk.html">Chatsworth Park Walk</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 == "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></tr><tr>');
// don't ask me why, but if one closes <center> after the thumbnail NSGMLS complains it was never open!
// one might assume it's because it's acting like <p> if one tries to 'close' that
if (maxthumbs) {
	document.write('<td><br />');
	DisplayThumb(0, 182, 112, 5, 10);
	document.write('<br /></td>');
	document.write('</tr><tr>');
	document.write('<td>');
	DisplayThumb(1, 144, 204, 10, 10);
	document.write('<br /></td>');
	document.write('</tr><tr>');
	document.write('<td><br />');
	DisplayThumb(2, 182, 112, 5, 10);
	document.write('<br /></td>');
	document.write('</tr><tr>');
}
document.write('<td><center><a href="StPeter.html">');
document.write('<img src="eStPeter.jpg" alt="St Peter\'s Church" width="144" height="210" vspace="10"');
document.write(' align="top" border="0" /></a></center></td>');
document.write('</tr><tr>');

if (maxthumbs) {
	document.write("<td><center><i>Click to see larger versions<br />of above photos</i></center></td>");
}
else {
	document.write("<td><center><i>Click to see larger version<br />of above photo</i></center></td>");
}
document.write('</tr></table><p />');
}
