$(document).ready(function() {

	$("#popup").click(function() {
		$.fancybox({
			'orig'			: $(this),
			'width'			: 740,
			'height'		: 500,
			'autoScale'     : false,
			'type'			: 'iframe',
			'href'			: this.href
		});
		return false;
	});			
	
	$("#popup2").click(function() {
		$.fancybox({
			'orig'			: $(this),
			'width'			: 550,
			'height'		: 550,
			'autoScale'     : false,
			'type'			: 'iframe',
			'href'			: this.href
		});
		return false;
	});		
	
	$("a[rel=example_group]").fancybox({
		'titlePosition' 	: 'over',
		'padding'	  		: 15,
		'showNavArrows'  	: true,
		'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Afbeelding ' +  (currentIndex + 1) + ' / ' + currentArray.length + ' - <b>Bron:</b> ' + title + '</span>';
		}
	});

});
