$(document).ready(function() {

	/* This is basic - uses default settings */
	
	$("a.vidPop").fancybox();
	
	/* Using custom settings */
	$("a.iframe").fancybox({
				'width'				: '50%',
				'height'			: '50%',
				'autoScale'			: false,
				'transitionIn'	:	'elastic',
				'transitionOut'	:	'elastic',
				'type'				: 'iframe'
			});
	/* Using custom settings */
	$("a.videoIframe").fancybox({
				'width'				: 520,
				'height'			: 300,
				'autoScale'			: true,
				'transitionIn'	:	'elastic',
				'transitionOut'	:	'',
				'type'				: 'iframe'
			});
	/* Using custom settings */
	$("a.employee").fancybox({
				'width'				: 500,
				'height'			: 500,
				'autoScale'			: false,
				'transitionIn'	:	'elastic',
				'transitionOut'	:	'elastic',
				'type'				: 'iframe'
			});
	
	$("a#inline").fancybox({
		'hideOnContentClick': true
	});

	/* Apply fancybox to multiple items */
	
	$("a.group").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	false
	});
	
	/*$.fancybox(
		'<a class="iframe" href="http://www.youtube.com/v/8oABiyuHZT8?fs=1&amp;hl=en_US" title="video 1"></a>',
		{
        	'width'				: '50%',
				'height'			: '50%',
				'autoScale'			: true,
				'transitionIn'	:	'elastic',
				'transitionOut'	:	'elastic',
				'type'				: 'iframe'
		}
	);*/
	
});
