$(document).ready(function() {

	//function addMega(){
	//$(this).addClass("hovering");
	//}
	
	//function removeMega(){
	//$(this).removeClass("hovering");
	//}
	
	
	//function addMega(){
	//$(this).addClass("hovering");
	//$($(this).find("h2 a")).addClass("hover");
	//}
	
	//function removeMega(){
	//$(this).removeClass("hovering");
	//$($(this).find("h2 a")).removeClass("hover");
	//}
	
	
	function addMega(){
	$($(this).find("h2")).addClass("hover");
	$($(this).find("div.mega-choices")).slideDown("fast");
	$(this).addClass("hovering");
	}
	
	function removeMega(){
	$($(this).find("h2")).removeClass("hover");
	$($(this).find("div.mega-choices")).slideUp("fast");
	$(this).removeClass("hovering");
	} 
	
	var megaConfig = {
	interval: 30,
	sensitivity: 4,
	over: addMega,
	timeout: 100,
	out: removeMega
	};
	
	$("li.dropdown").hoverIntent(megaConfig)

});

