/* Jquery startup functie */
$(document).ready(function(){
	
	$("li.mega").hoverIntent(megaConfig);
	
	/* Apply fancybox op afbeeldingen */	
	$("a.fancy").fancybox({
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		'hideOnContentClick': true
	});

});

/* Megamenu instellingen en hulpfuncties */
var megaConfig = {    
     interval: 0,
     sensitivity: 4,
     over: addMega,
     timeout: 0,
     out: removeMega
};

function addMega()
{
  $(this).addClass("hovering");
}

function removeMega()
{
  $(this).removeClass("hovering");
}