$(document).ready( function()
{

	var maxHeight = 0;

	$('.equal').each( function()
	{
		if ($(this).height() > maxHeight)
		{
			maxHeight = $(this).height();
		}
	});

	$('#projects .equal').height(maxHeight);

	$("a.project-image-single").fancybox({
		'titlePosition'		: 'over',
		'overlayColor'		: '#000',
		'overlayOpacity'	: 0.95
	});

	$("a[rel=project-images],a[rel=encoteca],a[rel=tafelonderstel],a[rel=noordertunnel]").fancybox({
		'titlePosition'		: 'over',
		'overlayColor'		: '#000',
		'overlayOpacity'	: 0.95
	});

});
