$().ready(function(){
	function addMega(){
		$(this).addClass("hovering");
		$(this).find("div:first").bgIframe({ opacity:false });
	}

	function removeMega(){
		$(this).removeClass("hovering");
	}

	$("li.mega").hoverIntent({
		interval: 150,
		sensitivity: 4,
		over: addMega,
		timeout: 150,
		out: removeMega
	});
});
