// JavaScript Document
// Fancybox
$(document).ready(function() {
	// Einzelne Bilder
	$('a[rel="fancybox"]').fancybox({
		'autoScale'			: 	true,
		'overlayOpacity' 	: 	0.5,
		'overlayColor' 		: 	'#000',
		'showNavArrows'		: 	false
	});
	//Inline Content
	$("a#inline").fancybox({
		'hideOnContentClick': true
	});
	//Inline Content
	$("a#ajax").fancybox({
		'hideOnContentClick': false,
		'overlayOpacity' 	: 	0.5,
		'overlayColor' 		: 	'#000',
		'type'				: 	'iframe'
	});
	// Galeriebilder
	$('a[rel="fancybox_group"]').fancybox({
		'autoScale'			: 	true,
		'overlayOpacity' 	: 	0.5,
		'overlayColor' 		: 	'#000',
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
								if(currentArray.length > 1) {
								/*return '<span id="fancybox-title-over">Bild ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';*/
								return '<span style="padding: 10px;">Bild ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
								}
							  }
	});
	
});
