$(document).ready(function() {
            /*
            *   Bild vergrößern
            */
            $("a.thumbnail").fancybox({
                'opacity'        : true,
                'overlayShow'    : false,
                'titlePosition'    : 'inside',
                'transitionIn'    : 'elastic',
                'transitionOut'    : 'fade'
            });
        });





 $(document).ready(function() {
          /*
           *   Fotogalerie
           */
            $("a[rel=fotogalerie_zeile]").fancybox({
                'overlayShow' : 'false',
                'transitionIn'        : 'none',
                'transitionOut'        : 'none',
                'titlePosition'     : 'inside',
                'titleFormat'        : function(title, currentArray, currentIndex, currentOpts) {
                return 'Foto ' + (currentIndex + 1) + ' von ' + currentArray.length + '</span>' + '<br/>' + '<span id="title_abstand">' + (title.length ? ' ' + title : '') + '</span>'
                + '<br /><a href="'  +  currentOpts.href + '" target="_blank">Foto in voller Aufl&ouml;sung herunterladen</a>'
                ;
                }
            });
        });

