	
$(document).ready(function() {


	/*===========================================================================================*/
	/*       BILD POPUPS - (FANCYBOX)               */
	/*===========================================================================================*/

	$(".alignable-content-image a.fancybox, .gallery a.fancybox").each(function(){
		var title = $(this).attr('title') + '';
		var info = '';
		if($(this).next('.image-info-container').html()){
			var info = $(this).next('.image-info-container').html();	
		}

		function formatFancyTitle(title, currentArray, currentIndex, currentOpts) {
			if(info){
				return info;
			} else {
				return '<div class="fancybox-title-box"><span class="fancybox-numbers">' + (currentIndex + 1) + ' / ' + currentArray.length + '</span><span class="fancybox-title">'+ title +'</span><div style="clear: both;"></div></div>';
			}
		}
									
		$(this).fancybox({				
			'titleShow'		: true,
			'overlayOpacity'	: 0.6,
			'overlayColor'		: '#000',
			'titlePosition' 	: 'inside',                           /*'outside', 'inside' or 'over'*/
			'titleFormat'		: formatFancyTitle	
	
		}); 
		
		
		
	});

	
	
	
});

