/* hoverIntent r6 http://cherne.net/brian/resources/jquery.hoverIntent.html */
(function($){$.fn.hoverIntent=function(f,g){var cfg={sensitivity:7,interval:100,timeout:0};cfg=$.extend(cfg,g?{over:f,out:g}:f);var cX,cY,pX,pY;var track=function(ev){cX=ev.pageX;cY=ev.pageY};var compare=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);if((Math.abs(pX-cX)+Math.abs(pY-cY))<cfg.sensitivity){$(ob).unbind("mousemove",track);ob.hoverIntent_s=1;return cfg.over.apply(ob,[ev])}else{pX=cX;pY=cY;ob.hoverIntent_t=setTimeout(function(){compare(ev,ob)},cfg.interval)}};var delay=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);ob.hoverIntent_s=0;return cfg.out.apply(ob,[ev])};var handleHover=function(e){var ev=jQuery.extend({},e);var ob=this;if(ob.hoverIntent_t){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t)}if(e.type=="mouseenter"){pX=ev.pageX;pY=ev.pageY;$(ob).bind("mousemove",track);if(ob.hoverIntent_s!=1){ob.hoverIntent_t=setTimeout(function(){compare(ev,ob)},cfg.interval)}}else{$(ob).unbind("mousemove",track);if(ob.hoverIntent_s==1){ob.hoverIntent_t=setTimeout(function(){delay(ev,ob)},cfg.timeout)}}};return this.bind('mouseenter',handleHover).bind('mouseleave',handleHover)}})(jQuery);

/*	Hover Accordion Menu 1.0 http://www.sam3k.com/blog */
(function($) {
	$.fn.hoverAccordionMenu = function(options) {
		var hoverIntentConfig = {    
			 sensitivity: 3, // number = sensitivity threshold (must be 1 or higher)    
			 interval: 50, // number = milliseconds for onMouseOver polling interval    
			 over: slideDown, // function = onMouseOver callback (REQUIRED)    
			 timeout: 500, // number = milliseconds delay before onMouseOut    
			 out: slideUp // function = onMouseOut callback (REQUIRED)    
		};
		$('#menu-main > li').not(".active").find("ul").hide(); //hide 2nd level at startup
		/*2nd approach with set time out on both mouseover and mouseout*/
		$('#menu-main > li:has(ul > li)').not(".active").hoverIntent( hoverIntentConfig );
		function slideDown() { 
			$(this).find("ul").slideDown("slow");
		}
		function slideUp() {
			$(this).find("ul").slideUp("slow"); 
		}
	}
})(jQuery);
jQuery(document).ready(function(){	jQuery(this).hoverAccordionMenu(); });
