// JavaScript Document
function menuover(oitem)
{
	oitem.style.color="White";
	oitem.style.backgroundColor = "#CC3333";
	oitem.style.fontWeight = "bold";
}
function menuout(oitem)
{
	oitem.style.color="Navy";
	oitem.style.backgroundColor = "White";
	oitem.style.fontWeight = "bold";
}

