$(document).ready(function() {

	$("a.fancybox").fancybox({
		'transitionIn'		: 'fade',
		'transitionOut'		: 'fade',
		overlayColor		: '#666',
		'cycling'	 	: true,
		showNavArrows		: false,
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">' + (title.length ? ' &nbsp; <strong>' + title : '') + '</strong></span>'; }
	});

	$("a[rel=fancybox]").fancybox({
		'transitionIn'		: 'fade',
		'transitionOut'		: 'fade',
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Afbeelding ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; <strong>' + title : '') + '</strong></span>'; }

	});

});
