// ______________ Highlight cella td del menu di servizio OnMouseOver ____________function menu_BEF_ser( tableCellRef, hoverFlag, navStyle ) {	if ( hoverFlag ) {		switch ( navStyle ) {			case 1:				tableCellRef.style.backgroundColor = '#8295B6';				break;			default://				tableCellRef.style.backgroundColor = '#D2D8E4';				if ( document.getElementsByTagName ) {					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#c00';				}		}	} else {		switch ( navStyle ) {			case 1:				tableCellRef.style.backgroundColor = '#D2D8E4';				break;			default://				tableCellRef.style.backgroundColor = '#D2D8E4';				if ( document.getElementsByTagName ) {					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#000';				}		}	}}// ______________  Highlight cella td del menu standard OnMouseOver ____________function menu_BEF( tableCellRef, hoverFlag, navStyle ) {	if ( hoverFlag ) {		switch ( navStyle ) {			case 1:				tableCellRef.style.backgroundColor = '#8295B6';				break;			default://				tableCellRef.style.backgroundColor = '#dddddd';				if ( document.getElementsByTagName ) {					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#c00';				}		}	} else {		switch ( navStyle ) {			case 1:				tableCellRef.style.backgroundColor = '#dddddd';				break;			default://				tableCellRef.style.backgroundColor = '#dddddd';				if ( document.getElementsByTagName ) {					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#000';				}		}	}}