$(document).ready(function() {

	$("a.[rel=photo_one]").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	300,
		'speedOut'		:	400,
		'overlayShow'	:	false

	});

	$("a.[rel=group]").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	300,
		'speedOut'		:	400,
		'overlayShow'	:	false,
		'titlePosition' 	: 'inside',
		'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
		    return '<span id="fancybox-title-over">Zdjêcie ' +  (currentIndex + 1) + ' / ' + currentArray.length + '<br>' + title +'</span>';
		}
	});
	
});

