// SuperFish Menu initialization

$(document).ready(function(){ 
	// initialize the menu
	$("ul.sf-menu").supersubs({ 
		minWidth:    12,   // minimum width of sub-menus in em units 
		maxWidth:    27,   // maximum width of sub-menus in em units 
		extraWidth:  1,     // extra width can ensure lines don't sometimes turn over
	}).superfish({
		delay:       200,                // the delay in milliseconds that the mouse can remain outside a submenu without it closing 
		// animation:   null,   // an object equivalent to first parameter of jQuery’s .animate() method 
		speed:         'fast',           // speed of the animation. Equivalent to second parameter of jQuery’s .animate() method 
		autoArrows:    true,               // if true, arrow mark-up generated automatically = cleaner source code at expense of initialisation performance 
		dropShadows:   false,               // completely disable drop shadows by setting this to false 
		disableHI:     false,              // set to true to disable hoverIntent detection
	});
});