$(document).ready(function() {
	$("ul#topnav li").hover(function() { //Hover over event on list item
		$(this).find("span.spanNavigazione").show(); //Show the subnav
	} , function() { //on hover out...
		$(this).find("span.spanNavigazione").hide(); //Hide the subnav
	});

});
