	$(document).ready(function() {
		$(".iframe").fancybox({
			'width'	     	: 500,
			'height'	     	: 400,
	        'autoScale'     	: true,
	        'transitionIn' 	:	'none', //fade, elastic, none
			'transitionOut'	:	'none', //fade, elastic, none
			'titlePosition'	:	'inside', //outside, inside, over
			'changeSpeed'	:	100,
			'speedIn'		:	400,
			'speedOut'		:	200,
			'overlayShow'	:	true,
			'type'	     	: 'iframe',
			'overlayColor'	:	'#004A25',
			'overlayOpacity':	0.7,
			onClosed	     	: function() {
				//location.reload();
			}
		});
	});


