// JavaScript Document
document.write("<div id=\"mainMenu\"><ul class=\"mainMenu-tabs\">")
if (section == "Home") {
	document.write("<li class=\"mainMenu-selected\" style=\"width:80px\" onclick=\"window.location='index.html'\">Home</li>")
}
else {
	document.write("<li style=\"width:80px\"><a href=\"index.html\">Home</a></li>")
}
if (section == "WhatsOn") {
	document.write("<li class=\"mainMenu-selected\" style=\"width:102px\" onclick=\"window.location='whatsOn_Home.html'\">What's On</li>")
}
else {
	document.write("<li style=\"width:102px\"><a href=\"whatsOn_Home.html\">What's On</a></li>")
}
if (section == "GetInvolved") {
	document.write("<li class=\"mainMenu-selected\" style=\"width:117px\" onclick=\"window.location='getInvolved_Home.html'\">Get involved</li>")
}
else {
	document.write("<li style=\"width:117px\"><a href=\"getInvolved_Home.html\">Get involved</a></li>")
}
if (section == "About") {
	document.write("<li class=\"mainMenu-selected\" style=\"width:80px\" onclick=\"window.location='about_Home.html'\">About</li>")
}
else {
	document.write("<li style=\"width:80px\"><a href=\"about_Home.html\">About</a></li>")
}
if (section == "Press") {
	document.write("<li class=\"mainMenu-selected\" style=\"width:80px\" onclick=\"window.location='press_Home.html'\">Press</li>")
}
else {
	document.write("<li style=\"width:80px\"><a href=\"press_Home.html\">Press</a></li>")
}
if (section == "ContactUs") {
	document.write("<li class=\"mainMenu-selected\" style=\"width:102px\" onclick=\"window.location='contactUs.php'\">Contact us</li>")
}
else {
	document.write("<li style=\"width:102px\"><a href=\"contactUs.php\">Contact us</a></li>")
}
if (section == "Partners") {
	document.write("<li class=\"mainMenu-selected\" style=\"width:86px\" onclick=\"window.location='partners_home.html'\">Partners</li>")
}
else {
	document.write("<li style=\"width:86px\"><a href=\"partners_home.html\">Partners</a></li>")
}
if (section == "Gallery") {
	document.write("<li class=\"mainMenu-selected\" style=\"width:82px\" onclick=\"window.location='gallery_2009.html'\">Gallery</li>")
}
else {
	document.write("<li style=\"width:82px\"><a href=\"gallery_2009.html\">Gallery</a></li>")
}
document.write("</ul></div>")  