$(document).ready(function() {
	projectHover();
	fancyBox();
	loepFancyBox();
});

function projectHover() {
	
	$(".project").hover(
		function() {
			$(this).addClass("active");
		},
		function() {
			$(this).removeClass("active");	
		}
	)
}

function fancyBox() { 
	$(".afbeelding a").fancybox({		
		'zoomOpacity'			: true,
		'overlayShow'			: true,
		'zoomSpeedIn'			: 500,
		'zoomSpeedOut'			: 500,
		'overlayOpacity'		: 0.8
	}); /* Using custom settings */ 
}; 


function loepFancyBox() { 
	$(".loep a").fancybox({		
		'zoomOpacity'			: true,
		'overlayShow'			: true,
		'zoomSpeedIn'			: 500,
		'zoomSpeedOut'			: 500,
		'overlayOpacity'		: 0.8
	}); /* Using custom settings */ 
}; 
