/**
 * @author nicola
 */


$(document).ready(function(){
	$("ul.nav").superfish({
		animation : {opacity:"show"},
		delay : 1000
	});
	$("#menu2").hide();
	
	$('#mainMenu ul li:has(ul)').hover(function () {
		$(this).children("a").addClass('active');
		//$(this).children("ul:visible").dropShadow();
	},function(){
		//$(this).children("ul").removeShadow();
		$(this).children("a").removeClass('active');
	});
});