jQuery(document).ready(function() {
				
	/* This is basic - uses default settings */
	
	$("a#fancy").fancybox({
		
		'titleShow'	: false,	
		'transitionIn'	:	'fade',
		'transitionOut'	:	'fade',
		'speedIn'		:	800, 
		'speedOut'		:	400			
	});

	jQuery(".fancyLink").fancybox({
		'width' : 840,
		'height' : "95%",
		'autoScale' : false,
		'titleShow'	: false,	
		'transitionIn'	:	'fade',
		'transitionOut'	:	'fade',
		'speedIn'		:	800, 
		'speedOut'		:	400,
		'centerOnScroll' : false,
		'type' : 'iframe'
	});
	
	/* Using custom settings */
	
	$("a#inline").fancybox({
		'hideOnContentClick': true
	});

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

