function writeMenu(menuLocation)
{
	var selectedCell = "<td align='center' class='menuButtonSelected'>";
	var menuCell = "<td align='center' class='menuButton' onmouseover=\"this.className='menuButtonHover'\" " +
			"onmouseout=\"this.className='menuButton'\" ";

	document.write("<table cellpadding='2' cellspacing='2' width='100%' border='0' class='menuTable'>");
	document.write("<tr>");

	if(menuLocation == "Home")
		document.write(selectedCell);
	else
		document.write(menuCell + "onclick=\"window.location='home.htm'\">");

	document.write("Home</td>");
	document.write("</tr>");
	document.write("<tr>");

	if(menuLocation == "Location")
		document.write(selectedCell);
	else
		document.write(menuCell + "onclick=\"window.location='Location.htm'\">");

	document.write("Location</td>");
	document.write("</tr>");
	document.write("<tr>");

	if(menuLocation == "Environment")
		document.write(selectedCell);
	else
		document.write(menuCell + "onclick=\"window.location='Environment.htm'\">");

	document.write("Environment</td>");
	document.write("</tr>");
	document.write("<tr>");
	
	if(menuLocation == "SustainableEnergy")
		document.write(selectedCell);
	else
		document.write(menuCell + "onclick=\"window.location='SustainableEnergy.htm'\">");

	document.write("Sustainable Energy</td>");
	document.write("</tr>");
	document.write("<tr>");

	if(menuLocation == "Accessibility")
		document.write(selectedCell);
	else
		document.write(menuCell + "onclick=\"window.location='Accessibility.htm'\">");

	document.write("Accessibility</td>");
	document.write("</tr>");
	document.write("<tr>");

	if(menuLocation == "BuildingRedev")
		document.write(selectedCell);
	else
		document.write(menuCell + "onclick=\"window.location='BuildingRedev.htm'\">");

	document.write("2003 Building<br>Re-Development</td>");
	document.write("</tr>");
	document.write("<tr>");

	if(menuLocation == "Accommodation")
		document.write(selectedCell);
	else
		document.write(menuCell + "onclick=\"window.location='Accommodation.htm'\">");

	document.write("Accommodation</td>");
	document.write("</tr>");
	document.write("<tr>");

	if(menuLocation == "Facilities")
		document.write(selectedCell);
	else
		document.write(menuCell + "onclick=\"window.location='Facilities.htm'\">");

	document.write("Facilities</td>");
	document.write("</tr>");
//	document.write("<tr>");
//
//	if(menuLocation == "Catering")
//		document.write(selectedCell);
//	else
//		document.write(menuCell + "onclick=\"window.location='Catering.htm'\">");
//
//	document.write("Catering</td>");
//	document.write("</tr>");
//	document.write("<tr>");
//
//	if(menuLocation == "Resourses")
//		document.write(selectedCell);
//	else
//		document.write(menuCell + "onclick=\"window.location='Resourses.htm'\">");
//
//	document.write("Resourses</td>");
//	document.write("</tr>");
	document.write("<tr>");

	if(menuLocation == "Minimum Numbers")
		document.write(selectedCell);
	else
		document.write(menuCell + "onclick=\"window.location='MinimumNumbers.htm'\">");

	document.write("Costs & Min Numbers</td>");
	document.write("</tr>");
	document.write("<tr>");

	if(menuLocation == "Chapel")
		document.write(selectedCell);
	else
		document.write(menuCell + "onclick=\"window.location='Chapel.htm'\">");

	document.write("Chapel</td>");
	document.write("</tr>");
	document.write("<tr>");

	if(menuLocation == "PastPhotos")
		document.write(selectedCell);
	else
		document.write(menuCell + "onclick=\"window.location='PastPhotos.htm'\">");

	document.write("Photos from the Past</td>");
	document.write("</tr>");
	document.write("<tr>");

	if(menuLocation == "StuartMill")
		document.write(selectedCell);
	else
		document.write(menuCell + "onclick=\"window.location='StuartMill.htm'\">");

	document.write("Stuart Mill</td>");
	document.write("</tr>");

	document.write("</table>");
}