
function menuHide(element){
	element.style.backgroundColor='white';
	element.firstChild.style.color='#121212';
	element.childNodes[1].style.display = "none";
}

function menuShow(element){
	element.style.backgroundColor='#00386A';
	element.firstChild.style.color='#FFFFFF';
	element.childNodes[1].style.display = "block";

}

function menuHide2(element){
	element.style.backgroundColor='00519E';
}

function menuShow2(element){
	element.style.backgroundColor='#00519E';
}
