$(document).ready(function() {

	/* This is basic - uses default settings */
	
	$("a#single").fancybox();
	
	/* Using custom settings */
	
	$("a.inline").fancybox({
		'hideOnContentClick': true,
		'autoDimensions': false,
    'width': 560,
    'height': 460,
    'overlayShow'	:	true,
		'overlayOpacity' : 0.5,
		'padding' : 20,
		'overlayColor' : '#000'
	});

	/* Apply fancybox to multiple items */
	
	$("a.group").fancybox({
		'transitionIn'	:	'fade',
		'transitionOut'	:	'fade',
		'speedIn'		:	800, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		'overlayOpacity' : 0.5,
		'overlayColor' : '#000',
		'titleShow' : true,
		'titlePosition' : 'over'
	});
	
});
