function addMega() {
	$(this).addClass("hovering");
}
function removeMega() {
	$(this).removeClass("hovering");
}
$(document).ready(function() {
	$('.mega-menu li.menu-item').hover( addMega, removeMega );
});
