function openLightbox(propertyName, imageName, imageWidth, imageHeight) {
	jQuery.fancybox(
		'<img src="/tours/' + propertyName + '/photos/' + imageName + '.jpg" alt="' + imageName + '" width="' + imageWidth + '" height="' + imageHeight +'" />',
		{
			'speedIn'			:	600, 
			'speedOut'			:	200,
			'transitionIn'		: 'fade',
			'transitionOut'		: 'fade',
			'showCloseButton'	:  true
		}
	);
}

jQuery(document).ready(function() {
	jQuery("a.single_image").fancybox();
	jQuery("a.inline").fancybox({
		'hideOnContentClick': true
	});
	jQuery("a.group1").fancybox({
		'transitionIn'		:	'elastic',
		'transitionOut'		:	'elastic',
		'speedIn'			:	600, 
		'speedOut'			:	200, 
		'overlayShow'		:	false,
		'showCloseButton'	:  true
	});
	
	jQuery("div.thumbnail a").fancybox();
});