function highlightMenu(thisItem)
{
	thisItem.style.backgroundColor = "#E9EDD7";
}

function unHighlightMenu(thisItem)
{
	thisItem.style.backgroundColor = "transparent";
}

var isReady = false;
function enableMenu()
{
	isReady = true;
}