$(document).ready(function() {
	function formatTitle(title, currentArray, currentIndex, currentOpts) {
		    return '<div id="tip7-title"><span><a href="javascript:;" onclick="$.fancybox.close();"><img src="/images/closelabel.gif" /></a></span>' + (title && title.length ? '<b>' + title + '</b>' : '' ) + 'Bild ' + (currentIndex + 1) + ' von ' + currentArray.length + '</div>';

	}
	
	$("a[rel=lightpopup]").fancybox({
	'showCloseButton'	: false,
	'showNavArrows'		: true,
	'titlePosition' 		: 'inside',
	'titleFormat'		: formatTitle

	});
	
});

