function menu() {
	$("ul#navigation>li>a").unbind('click').click(function()
	{
		var $subnav = $(this).next();
		if($subnav.is(":visible"))
		{
			$subnav.animate({height: "toggle"}, 200, "easeInOutExpo").prev().removeClass("active");
			$('#categorie').html("");
			$('#sezione').html("");
			$('#prods').load('../apertura.php');
			$(".elenco2 a").removeClass("attivo");
			init_events();
		}
		if(!$subnav.is(":visible"))
		{
			$subnav.animate({height: "toggle"}, 200, "easeInOutExpo").prev().addClass("active");
		}
		return false;
	});
}

/*function menu()
{
	$("ul.navigation>li>a").unbind('click').click(function()
	{
		var $subnav = $(this).next();
		if($subnav.is(":visible"))
		{
			$subnav.animate({height: "toggle"}, 200, "easeInOutExpo", checkHeight).prev().removeClass("active");
		}
		if(!$subnav.is(":visible"))
		{
			$subnav.animate({height: "toggle"}, 200, "easeInOutExpo", checkHeight).prev().addClass("active");
		}
		return false;
	}
	);

}*/

