// PULSANTI
function getOver(obj)
{
    obj.style.background = "#374765"; 
	obj.style.color = '#FFFFFF';
}
function getOut(obj)
{
    obj.style.background = "#FFFFFF"; 
	obj.style.color = '#374765';
}

// MENU
function getOverMenu(td,input)
{
	td.style.background = "rgb(255,255,190)";
	input.style.color = "#000000";
}
function getOutMenu(td,input)
{
	td.style.background = "rgb(55, 71, 101)";
	input.style.color = "#FFFFFF";
}


