$(function() {
	
	
	// Menu
	$("#menu ul").superfish({ 
    	hoverClass:  'menuOver',          						// the class applied to hovered list items 
			delay:       400,                            // one second delay on mouseout 
			animation:   { opacity: 'show', height:'show'},  // fade-in and slide-down animation 
    	disableHI:   false,	              						// set to true to disable hoverIntent detection 
			speed:       'fast',                          // faster animation speed 
			autoArrows:  false,                           // disable generation of arrow mark-up 
			dropShadows: false                            // disable drop shadows 
	});
	
							
});