$(document).ready(function() {
	// voor alle product afbeeldingen	
	$("a[rel=fancy]").fancybox({
		'centerOnScroll'	: 'true',
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'overlayOpacity'	: 0.6,
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Afbeelding ' + (currentIndex + 1) + ' van ' + currentArray.length + (title.length ? ' - ' + title : '') + '</span>';
		}
	});
	
	// voor de foto's
	$("a[rel=fancyfoto]").fancybox({
		'centerOnScroll'	: 'true',
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'overlayOpacity'	: 0.6,
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Foto ' + (currentIndex + 1) + ' van ' + currentArray.length + (title.length ? ' - ' + title : '') + '</span>';
		}
	});
				
	/*
	// voor test met digitale krant		
	$("a[rel=fancypage]").fancybox({
		'centerOnScroll'	: 'true',
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'overlayOpacity'	: 0.6,
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Bladzijde ' + (currentIndex + 1) + ' van ' + currentArray.length + '</span>';
		}
	});
	*/
	// voor iets wat ik niet meer weet		
	$("a.fancylink").fancybox({
		'centerOnScroll'	: 'true',
		'autoScale'			: false,
		'overlayOpacity'	: 0.6,
		'overlayShow'		: true,
		'width'				: 723,
		'height'			: 700
	});
	// voor het mailformulier op de contactpagina	
	$(".mailform").fancybox({
		'centerOnScroll'	: 'true',
		'autoScale'			: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe',
		'overlayOpacity'	: 0.6
	});
	// voor de wie-zijn-wij op de voorpagina	
	$("#presentatie").fancybox({
		'centerOnScroll'	: 'true',
		'autoScale'			: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe',
		'overlayOpacity'	: 0.6,
		'overlayShow'		: true,
		'width'				: 720,
		'height'			: 475
	});
});
