    $(document).ready(function() {
        $("a.popupImage").fancybox({	
			'padding'			: 5,
			'autoScale'			: true,
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'overlayColor'		: '#666',
			'overlayOpacity'	: 0.7,	
			'titleShow' 		: false,
			'centerOnScroll'	: true,
			'scrolling'			: 'no',
			'showCloseButton'	: false,
			'hideOnContentClick'	: true,
		});
		
        $("a.iFrameLogin").fancybox({		
        	'padding'			: 0,	
        	'margin'			: 0,
			'width'				: 350,
			'height'			: 200,
			'transitionIn'		: 'fade',
			'transitionOut'		: 'fade',
			'type'				: 'iframe',
			'overlayColor'		: '#000',
			'overlayOpacity'	: 0.7,	
			'titleShow' 		: false,
			'showCloseButton'	: false,
			'centerOnScroll'	: false,
			'scrolling'			: 'no',
		});
    });

