jQuery(document).ready(function() {

	/* This is basic - uses default settings */
	
	jQuery("a#single_image").fancybox();
	
	/* Resizing an iframe */
	
	jQuery("a.iframe").fancybox({
		'width' : 700,
		'height' : 525,
		'hideOnContentClick': false
	});
	
	/* Using custom settings */
	
	jQuery("a.inline").fancybox({
		'hideOnContentClick': false
	});

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

