function menuIn(elt)
{
	elt.style.backgroundColor =  "#FDDF93";
	elt.style.borderColor = '#FEC02D';
}

function menuOut(elt)
{
	elt.style.backgroundColor = "white";
	elt.style.borderColor = "white";
}
