function showMenu(id) {
	document.getElementById(id).style.visibility = "visible";
	document.getElementById(id + "Button").style.color = "#FFFFFF";
	document.getElementById(id + "Button").style.backgroundColor = "#7E1416";
}

function hideMenu(id) {
	document.getElementById(id).style.visibility = "hidden";
	document.getElementById(id + "Button").style.color = "";
	document.getElementById(id + "Button").style.backgroundColor = "";
}

function clickMouse(e) {
	if (e.target != document.getElementById("bridalMenu"))
	{
		hideMenu("bridalMenu");
	}
	
	if (e.target != document.getElementById("bridesmaidsMenu"))
	{
		hideMenu("bridesmaidsMenu");
	}
}