$(document).ready(function(){
	// Fancybox
	$("a.iframe").fancybox({
		'titleShow' 	: false,
		'width'			: 500,
		'height'		: 390,
		'autoScale'		: false,
		'type'			: 'iframe'
	});
	$("a[rel^=lightbox]").fancybox({
		'titlePosition' : 'inside',
		'titleFormat'	: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over"><strong>Bild ' + (currentIndex + 1) + ' von ' + currentArray.length + (title.length ? ':</strong> &nbsp; ' + title : '') + '</span>';
		}
	});

});