// JavaScript Document

$(document).ready(function() {

	/* This is basic - uses default settings */
	
	$("a#single_image").fancybox();
	
	$("#iframe").fancybox({

				'width'				: '50%',

				'height'			: '90%',

				'autoScale'			: false,

				'transitionIn'		: 'none',

				'transitionOut'		: 'none',

				'type'				: 'iframe'

			});
	$("#iframe1").fancybox({

				'width'				: '50%',

				'height'			: '100%',

				'autoScale'			: false,

				'transitionIn'		: 'none',

				'transitionOut'		: 'none',

				'type'				: 'iframe'
				

			});
			
	$("#iframe2").fancybox({

				'width'				: '50%',

				'height'			: '100%',

				'autoScale'			: true,

				'transitionIn'		: 'none',

				'transitionOut'		: 'none',

				'type'				: 'iframe'
				

			});
			
	
	$("#iframe3").fancybox({

				'width'				: '50%',

				'height'			: '100%',

				'autoScale'			: true,

				'transitionIn'		: 'none',

				'transitionOut'		: 'none',

				'type'				: 'iframe'
				

			});
			
	$("#iframe4").fancybox({

				'width'				: '50%',

				'height'			: '100%',

				'autoScale'			: true,

				'transitionIn'		: 'none',

				'transitionOut'		: 'none',

				'type'				: 'iframe'
				

			});
	
	$("#iframe5").fancybox({

				'width'				: '50%',

				'height'			: '100%',

				'autoScale'			: true,

				'transitionIn'		: 'none',

				'transitionOut'		: 'none',

				'type'				: 'iframe'
				

			});
	
	$("#iframe6").fancybox({

				'width'				: '80%',

				'height'			: '100%',

				'autoScale'			: true,

				'transitionIn'		: 'none',

				'transitionOut'		: 'none',

				'type'				: 'iframe'
				

			});
	/* Using custom settings */
	
	$("a#inline").fancybox({
		'hideOnContentClick': true
	});

	/* Apply fancybox to multiple items */
	
	$("a.group").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	false
	});
	
});
