$(document).ready( function() {
  			
  		$(".popup").fancybox({
  				'autoDimensions' : true,
          'autoScale'			: false,
  				'transitionIn'		: 'fade',
  				'transitionOut'		: 'fade'
  			});
  			
  		$(".iframe").fancybox({
  				'autoDimensions' : true,
          'autoScale'			: true,
  				'transitionIn'		: 'fade',
  				'transitionOut'		: 'fade'
  			});
  			
  		$("a[rel=gallery]").fancybox({
    		'transitionIn'		: 'none',
    		'transitionOut'		: 'none',
    		'titlePosition' 	: 'over',
    		'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
    		    return '<span id="fancybox-title-over">Img ' +  (currentIndex + 1) + ' / ' + currentArray.length + ' ' + title + '</span>';
    		}
    	});
  			
  });
