jQuery(document).ready(function() {
    $(".fbvideo").click(function() {
        $.fancybox({
            'padding'       : 0,
            'autoScale'     : false,
            'transitionIn'  : 'elastic',
            'transitionOut' : 'elastic',
            'title'         : false,
            'width'         : 640,
	    'height'        : 385,
'hideOnOverlayClick' : true,
	     'overlayShow'    :    false,
	            'href'          : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/') + '&autoplay=1',
	            'type'          : 'swf',
	            'swf'           : {
	            'wmode'             : 'transparent',
	            'allowfullscreen'   : 'true',
	            }
	        });
	 
	        return false;
	    });
	



$("a[rel=galerie]").fancybox({
         'transitionIn': 'elastic',
         'transitionOut': 'elastic',
         'titlePosition' : 'over',
         'titleFormat': function(title, currentArray, currentIndex, currentOpts) {
            return '<span id="fancybox-title-over">Foto ' + (currentIndex + 1) + ' von ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') +
            '</span>';
         }
      });

$("a.kontakt").fancybox({
'width':'85%',
'height':'85%',
'autoScale':false,
'transitionIn':'elastic',
'transitionOut':'elastic',
'type':'iframe'
});


});




