$(document).ready(function(){
	$(".menuutente ul").each(function(){
		$(this).hide();
		$(this).parent('.menuutente').hover(
			//alert();
			function(){ $(this).children('ul').show();},	
			function(){ $(this).children('ul').hide();}
		);
	});

});



