// JavaScript Document

$(document).ready(function() {
	$("a.gallery-foto").fancybox({
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic',
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		}
	});	
	
	$('#afbeelding-layer[rel=show]').jqFancyTransitions({ width: 232, height: 300, navigation: false, effect: 'curtain' });
	$('#afbeelding-layer[rel=showh]').jqFancyTransitions({ width: 232, height: 174, navigation: false, effect: 'curtain' });
	$('#afbeelding-layer[rel=showh]').css('margin-top', '105px');
});
