$(document).ready(function() {
	//$("a.fancybox").attr('rel', 'gallery').fancybox();
	$("a[rel=gallery]").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
		    return '<span id="fancybox-title-over"><span style="float: right;">Bild ' +  (currentIndex + 1) + ' von ' + currentArray.length + '</span>' + title + '</span>';
		}
	});
	$("a.fancybox_single").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
		    return '<span id="fancybox-title-over">' + title + '</span>';
		}
	});
});
