$(document).ready(function() {
	
	$("a.imagegroup").fancybox
	
	({
				'titleShow' : true,
				'overlayColor'		: '#000',
				'overlayOpacity'	: '0.6',
				'transitionIn'		: 'elastic',
				'transitionOut'		: 'elastic',
				'titlePosition' 	: 'inside',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">Bild ' + (currentIndex + 1) + ' von ' + currentArray.length + (title.length ? ' &nbsp;&nbsp;&nbsp; ' + title : '') + '</span>';
				}
			});
	
	$("a.notitlegroup").fancybox
	
	({
				'titleShow' : false,
				'overlayColor'		: '#000',
				'overlayOpacity'	: '0.6',
				'transitionIn'		: 'elastic',
				'transitionOut'		: 'elastic'
			});
});


