$.bindFancybox = function (){   

	$("a.iframe").fancybox({		
        'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
        'scrolling'		:  'auto',
        'width'         :   960,
        'onClosed'      :   function(){
            // When iframe closes, sometimes the window below is updated with Ajax.
            $('#fldbarcode').focus();
            $.bindFancybox();
        },
        'height'        :   800,        
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	false
	});
        $('.fancyimg').fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600,
		'speedOut'		:	200,
		'overlayShow'	:	false
	});
	$("a.iframe-small").fancybox({		
        'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
        'scrolling'		:  'auto',        
        'onClosed'      :   function(){
            // When iframe closes, sometimes the window below is updated with Ajax.
            $('#fldbarcode').focus();
            $.bindFancybox();
        },
        'width'         :   460,        
        'height'        :   300,        
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	false
	});       
}
