$(document).ready(function()
{ 
	
	function formatTitle(title, currentArray, currentIndex, currentOpts)
	{
	    return '<div style="color:#fff">' + (title && title.length ? title : '' ) + ' Veranstaltung ' + (currentIndex + 1) + ' von ' + currentArray.length + '</div>';
	}

	/*
	$(".detail_view").fancybox(
	{
		'titlePosition' : 'inside',
		"overlayOpacity": 0.8,
		"overlayColor"	: "#fff",
		'titleFormat'	: formatTitle
	});
	*/
	
	$(".detail_view").fancybox(
	{
		'titleShow'			:false,
        'width'             : 850,
        'height'            : 500,
        'autoScale'         : false,
        'transitionIn'      : 'none',
        'transitionOut'     : 'none',
        'type'              : 'iframe',
        "overlayOpacity"	: 0.7,
		"overlayColor"		: "#fff"
    });
	
});
