
$(document).ready(function() {

	/* This is basic - uses default settings */
	
	$("a#single_image").fancybox();
	
	/* Using custom settings */
	
	$("a#inline").fancybox({
		'hideOnContentClick': true,
		'overlayOpacity' 	:	0.8
	});

	/* Apply fancybox to multiple items */
	
	$("a.group").fancybox({
		'padding'			:	0,
		'overlayOpacity' 	:	0.8
	});
	
	$("area.map_point").fancybox({
		'padding'			:	0,
		'overlayOpacity' 	:	0.8
	});
	
});

