// JavaScript Documentfunction showHand(theObj) {
function showHand(theObj) {
	theObj.style.cursor = 'pointer';
}

function showMenu(theObj,menuName) {
	//document.write(eval(theObj));
	if (menuName != "noMenu"){
	menuName.style.visibility="visible";}
	theObj.style.cursor = 'pointer';
}

function setColour(theObj,theColor) {
	theObj.style.background=theColor;
}

function hideMenu(theObj) {
	theObj.style.visibility="hidden";
}

function hideAllMenus() {
	AboutUs.style.visibility="hidden";
	setColour(AboutUsCell,'#ACC8E3')
	Products.style.visibility="hidden";
	setColour(ProductsCell,'#ACC8E3')
	Process.style.visibility="hidden";
	setColour(ProcessCell,'#ACC8E3')
	News.style.visibility="hidden";
	setColour(NewsCell,'#ACC8E3')
}
function openLink(linkName) {
	window.location.href=linkName + ".html";
}