jQuery(document).ready(function() {

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

	$("a.produktbild").fancybox({
		overlayOpacity : .7
		,overlayColor  : '#000'
		,transitionIn  : 'elastic'
		,transitionOut :'elastic'
		,easingIn      : 'easeOutBack'
		,easingOut     : 'easeInBack'
		,speedIn       : 450
		,speedOut      : 350
		,showCloseButton : false
		,titlePosition : 'inside'
		,titleFormat   : formatProductTitle
	});

});
