$(function(){
/*
$("#menuIstituzionale a").not(".active").hover(
    function(){$("span.men",this).fadeIn("slow").fadeOut('slow');},
	function(){}
	);
*/
	$(document).ready(function() { 
	var Wh = $("#menuIstituzionale ul").width()+40;
	var WM = $("#menuIstituzionale").width()-40;
	var Wh2 = (WM - Wh)/2;
	var WM2 =  $("#menuIstituzionale").width()-(Wh2*2);


	$("#menuIstituzionale").css({'padding':'0px '+ Wh2 +'px','display':'inline','width':WM2+'px'});

		$("#menuIstituzionale a").each(function(){
	 		$(this).children('.men').fadeTo(100,0);
			$(this).hover(
				function(){
					var dim = $(this).parent().width();
					 $(this).children('.men').css({'width':dim+'px'}).fadeTo(300,.4).fadeTo(300,0);
				},
				function(){
			});
		});
	});

});