 $(document).ready(function() {
							 
	  $('#gallery a').lightBox();
	  function addMega(){ 
	  $(this).addClass("hovering"); 
	  } 
 
	function removeMega(){ 
	  $(this).removeClass("hovering"); 
	  } 
	  
	  var megaConfig = {     
	     interval: 40, 
	     sensitivity: 4, 
	  	over: addMega,
		timeout: 40, 
	out: removeMega 
	};
	
	
	
	$("li.mega").hoverIntent(megaConfig) 
	
	});
	     