$(document).ready(function() {
	$("ul.gallery a").attr({rel:"gallery"});
    
	$("ul.gallery a").fancybox({
		'titleShow':		'true',
		'titlePosition':	'inside',
		'transitionIn': 	'elastic',
		'transitionOut':	'elastic',
//		'titleFormat': function(title, currentArray, currentIndex, currentOpts){
//			return '<span id="fancybox-title-over">Zdjęcie ' + (currentIndex + 1) + ' z ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
//		}
	});
});

