var $jQ = jQuery.noConflict();
$jQ(document).ready(function(){
	//Sets the variables for the delayed hover
	var megaConfig = {       
	     interval: 100,   
	     sensitivity: 4, 
		 over: addMega,
		 timeout: 200,   
		 out: removeMega  
	};
	
	//Implement delayed hover on submenu
	$jQ(".subNav").hoverIntent(megaConfig);
});

//Add hovering class 
function addMega(){   
  $jQ(this).find(".sub").slideDown().addClass("hovering");   
  }   
function removeMega(){   
  $jQ(this).find(".sub").slideUp().removeClass("hovering");   
  }
