    // initialise plugins, superfish
jQuery(function(){
	jQuery('ul.sf-menu').superfish({
    	animation : 	{opacity:'show'},
        delay : 		800, 
   		autoArrows:		false,
    	dropShadows:	false,
   		pathClass:		'current'
   	});	
    jQuery("ul.sf-menu_mem").superfish({ 
        animation: 		{height:'show'},   // slide-down effect without fade-in 
        delay:     		800,               // 1.2 second delay on mouseout
        dropShadows: 	false,
        autoArrows:		false,
        pathClass:		'current'
    }); 
});

