		$(document).ready(function() {
	
			$(".imageLarge").fancybox({
				'scrolling'			: 'no',
		        'autoScale'     	: false,
		        'hideOnContentClick': true,
				'centerOnScroll'	: false,
				'showCloseButton'	: true,
		        'transitionIn'		: 'elastic',
				'transitionOut'		: 'fade',
				'overlayColor'		: '#000000',
				'overlayOpacity'	: .6,
				'type'				: 'image'
			});
			
			$(".iframe").fancybox({
				'width'				: 915,
				'height'			: 536,
				'padding'			: 0,
				'scrolling'			: 'no',
		        'autoScale'     	: false,
		        'hideOnContentClick': false,
				'centerOnScroll'	: false,
				'showCloseButton'	: false,
		        'transitionIn'		: 'fade',
				'transitionOut'		: 'fade',
				'overlayColor'		: '#585858',
				'overlayOpacity'	: .6,
				'type'				: 'iframe'
			});
						
		});