function showMenu(name)
{
	document.getElementById(name).style.display = "inline";
}

function hideMenu(name)
{
	document.getElementById(name).style.display = "none";
}

// Firefox stores backgroundColor as RGB and IE in hexidecimal, so have to check for both. IE stores letters in lowercase.
function changeBackgroundColor(name)
{
	var element = document.getElementById(name);

	if(element.style.backgroundColor == "#e7d6a3" || element.style.backgroundColor == '')
		element.style.backgroundColor = "#b7775d";
	else if(element.style.backgroundColor == "#b7775d")
		element.style.backgroundColor = "#e7d6a3";
	else if(element.style.backgroundColor == "rgb(231, 214, 163)" || element.style.backgroundColor == '')
		element.style.backgroundColor = "rgb(183, 119, 93)";
	else if(element.style.backgroundColor == "rgb(183, 119, 93)")
		element.style.backgroundColor = "rgb(231, 214, 163)";
}