$(document).ready(function(){	

/* ------------------------------------------------------------------------------------------------------------------------------------------------
	Efecto mostrar y ocultar submenú
------------------------------------------------------------------------------------------------------------------------------------------------ */

	$('#menu ul li').hover(function() { 
		
		$(this).children('ul').fadeIn('fast');
	
	}, function() { 
		
		$(this).children('ul').fadeOut('fast');
	
	});

/* ------------------------------------------------------------------------------------------------------------------------------------------------
	Mostrar login para descargar archivo
------------------------------------------------------------------------------------------------------------------------------------------------ */

	$('#cuadro.ficha .documentacion li a.file_download').click(function() { 
	
		$(this).next().toggle();
	
	});

});



/* ------------------------------------------------------------------------------------------------------------------------------------------------
	Igualar alturas de columans en Ingredientes
------------------------------------------------------------------------------------------------------------------------------------------------ */

function equalHeight(group) {

	tallest = 0;
	
	group.each(function() {

		thisHeight = $(this).height();
		
		if(thisHeight > tallest) {

			tallest = thisHeight;
			
		}

	});

	group.height(tallest);

}

$(document).ready(function() {

	equalHeight($(".triCategorias"));
	
});



