function menuOv(obj,linkId)
{
	document.getElementById(obj).style.height = '40px';
	document.getElementById(linkId).style.color = '#002d62';
}


function menuOut(obj,linkId)
{
	document.getElementById(obj).style.height = '30px';
	document.getElementById(linkId).style.color = '#ffffff';
}


function menu2Ov(menuId)
{
	document.getElementById(menuId).style.display = 'block';
}


function menu2Out(menuId)
{
	document.getElementById(menuId).style.display = 'none';
}
