// JavaScript Document
$(document).ready(function() {
	
			$("#iframe").fancybox({
				'width'				: '50%',
				'height'			: '90%',
				'autoScale'			: true,
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'type'				: 'iframe'
			})
			$("#iframe2").fancybox({
				'width'				: '50%',
				'height'			: '90%',
				'autoScale'			: true,
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'type'				: 'iframe'
			})
	
});
