$(document).ready(function() { /* This is basic - uses default settings */
    $("a.fancybox").fancybox({
        'transitionIn'      : 'none',
        'transitionOut'     : 'none',
        'titlePosition'     : 'over',
        'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
            return '<span id="fancybox-title-over">Bild ' +  (currentIndex + 1) + ' / ' + currentArray.length + ' ' + title + '</span>';
        }
    });
    
    $("a.artikelbild").fancybox(); $("a.artikelbild2").fancybox({'zoomOpacity'	: true, 'overlayShow': false,'zoomSpeedIn':500,'zoomSpeedOut':500}); }); 
