$(document).ready(function() {

/*	var megaConfig = {
		 interval: 500,
		 sensitivity: 4,
		 over: addMega,
		 timeout: 500,
		 out: removeMega
	};*/

	$('li.mega').mouseover(function(){
		$(this).addClass("hovering");
	});
	$('li.mega').mouseout(function(){
		$(this).removeClass("hovering");
	});
});
