     $(document).ready(function() {

	/* This is basic - uses default settings */

	$("a.iframe").fancybox({
	'height'	:	700,
	'width'	:	650,
	});
	
	$("a#single_image").fancybox({
	'width'				: '100%',
	'height'			: '100%',
	'autoScale'			: false,
	'transitionIn'		: 'none',
	'transitionOut'		: 'none',
	'type'				: 'image'
	});
	
	/* Using custom settings */
	
	$("a#inline").fancybox({
		'hideOnContentClick': true
	});

	/* Apply fancybox to multiple items */
	
	$("a.group").fancybox({
	'width'				: '90%',
	'height'			: '90%',
	'autoScale'			: true,
	'transitionIn'		: 'none',
	'transitionOut'		: 'none',
	'type'				: 'iframe'
	});
	
});
