$(document).ready(function() { /* This is basic - uses default settings */
    $("a[rel=smd-galerie]").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}); 
   $("a.fancyframe").fancybox({
        'width'             : '92%',
        'height'            : '92%',
        'autoScale'         : false,
        'transitionIn'      : 'none',
        'transitionOut'     : 'none',
        'type'              : 'iframe'
    });
     $("ul.netzwerk a").fancybox({
        'width'             : '75%',
        'height'            : '75%',
        'autoScale'         : false,
        'transitionIn'      : 'none',
        'transitionOut'     : 'none',
        'type'              : 'iframe'
    }); 
   
   });

