$(document).ready(function() {

	$("body.popup a[rel=image_group]").fancybox({
		'titleShow'     : true,
		'autoScale'     	: true,
		'titlePosition' 	: 'over',
		'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Image ' +  (currentIndex + 1) + ' / ' + currentArray.length + '</span>'; }
	});

	$("a[rel=video]").fancybox({
		'titleShow'     : false,
		'autoScale'     	: false
	});
	
});

