
	$(document).ready(function() {
	
	$("a.group").fancybox({
		'transitionIn'	:	'fade',
		'transitionOut'	:	'fade',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'padding'		:	0, 
		'overlayShow'	:	true,
		'titlePosition' :   'over'  ,
		'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
		    return '<span id="fancyboxr">Image ' +  (currentIndex + 1) + ' / ' + currentArray.length + ' </span>';
		},

		'index'         :   true
	});
	
});

	
