
$(document).ready(function() {

function addMega(){
	$(this).addClass("hovering");
	$($(this).find("li a")).addClass("hover");
	} 
	
function removeMega() { 
	$(this).removeClass("hovering"); 
	$($(this).find("li a")).removeClass("hover"); 
	} 

var megaConfig = {     
	     interval: 300, 
	     sensitivity: 8, 
		 over: addMega,
		 timeout: 200, 
	     out: removeMega 
	}; 
		
 $("li.mega").hoverIntent(megaConfig); 	
  });


