/*
http://nivo.dev7studios.com/support/jquery-plugin-usage/
*/
$(window).load(function() {
	$('ul.sf-menu').sooperfish({
		dualColumn  : 8, //if a submenu has at least this many items it will be divided in 2 columns
		tripleColumn  : 12, //if a submenu has at least this many items it will be divided in 3 columns
		hoverClass  : 'sfHover',
		delay    : 500, //make sure menus only disappear when intended, 500ms is advised by Jacob Nielsen
		animationShow  : {height:'show'},
		speedShow    : 510,
		easingShow      : 'linear',
		animationHide  : {height:'hide',opacity:'hide'},
		speedHide    : 400,
		easingHide      : 'linear',
		autoArrows  : true
	});
});

