// This script and many more are available free online at -->
// The JavaScript Source!! http://javascript.internet.com -->


var ie = document.all ? true : false;

//var description = new Array();
//description[1] = "<B>Return to our home page.</B>";
//description[2] = "<B>Some information about who we are and what we do.</B>";
//description[3] = "<B>Our worship services, time etc..</B>";
//description[4] = "<B>Some names, and contact information.</B>";
//description[5] = "<B>What's happening this week and in the future.</B>";
//description[6] = "<B>Our groups and their activities.</B>";
//description[7] = "<B>Find out where we are and how to get here.</B>";
//description[8] = "<B>See some pictures in our Photo Gallery.</B>";
//description[9] = "<B>Find out about our local community.</B>";
//description[10] = "<B>We're twinned with this Methodist Church in South Africa</B>";
//description[11] = "<B>Our online book shop, in association with amazon.co.uk</B>";
//description[12] = "<B>Secure area for the local church community</B>";
var origtext;

function doMouseDes(txt)
{
mText = document.getElementById("MenuText");
if (mText) {
origtext = mText.innerHTML;
mText.innerHTML = '<b>' + txt + '</b>';
}
}

function undoMouseDes() {
mText = document.getElementById("MenuText");
if (mText) {
mText.innerHTML = origtext;
}
}
