// initialise plugins
jQuery(function(){
	jQuery('ul.sf-menu').superfish({
		speed:  	'normal',           				// speed of the animation. Equivalent to second parameter of jQuery’s .animate() method
		animation:  {opacity:'show',height:'show'},  	// fade-in and slide-down animation 
		autoArrows: false                           	// disable generation of arrow mark-up 
	}
	);
});