//Funciones para resaltar los textos del menu de destinos
	function selectt (layer)	
	{
		layer.style.color='Black';
		layer.style.fontWeight='bold';
		layer.style.backgroundColor='#E3F4FF';
/*		layer.style.cursor='hand';*/
	}
	function deselectt (layer)
	{
		layer.style.color='#336699';
		layer.style.fontWeight='normal';
		layer.style.backgroundColor='';
	}
	function selectt_2 (layer)	
	{
		layer.style.color='#ff9900';
	}
	function deselectt_2(layer)
	{
		layer.style.color='';
	}
	function selectt_3(layer)	
	{
		layer.style.textDecoration='underline'
	}
	function deselectt_3(layer)
	{
		layer.style.textDecoration='none'
	}