function menuIn(elt)
{
	elt.style.backgroundColor =  "#666666";
	elt.style.color = 'white';
	elt.style.cursor = 'url("/aes2009/images/wand.cur"), hand';
}

function menuOut(elt)
{
	elt.style.backgroundColor = "#AAAAAA";
	elt.style.color = "#1E2776";
	elt.style.cursor = "default";
}
