// 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 the home page.</B>";
description[2] = "<B>A welcome to the website from the Chairman of the District.</B>";
description[3] = "<B>The latest news from the District</B>";
description[4] = "<B>A calendar of events around the Disrict</B>";
description[5] = "<B>A list of the main officers of the District</B>";
description[6] = "<B>Reports from the District Synod</B>";
description[7] = "<B>Reports from the Churches Regional Council for Yorkshire and the Humber</B>";
description[8] = "<B>Links to websites within and without the District</B>";
description[9] = "<B>Archived news from the District</B>";
description[10] = "<B>Holiday accomodation  with a Methodist connection plus Catering Venues etc</B>";
description[11] = "<B>Circuits and Churches in the District</B>";
description[12] = "<B>Reports from Methodist Conference</B>";
description[13] = "<B>Resources and Downloads</B>";
description[14] = "<B>Social Responsibility / Church and Society Joint working Group</B>";
var origtext;

function doMouseDes(index) {
if (ie) {
mText = document.all["MenuText"]
}else{
mText = document.anchors["MenuText"]
}
origtext = mText.innerHTML;
mText.innerHTML = description[index];
}

function undoMouseDes() {
if (ie) {
mText = document.all["MenuText"]
}else{
mText = document.anchors["MenuText"]
}
mText.innerHTML = origtext;
}
