/*lightboxes*/
$(function(){
	
	$("a.imgSingle").fancybox({
		'autoScale' : false
	});
	
	$("a.imgSingleAutoScale").fancybox({
		titlePosition: 'inside'		   
	});
	
	$("a.imgInline").fancybox({
		'hideOnContentClick': true
	});

	$("a.imgGroup").fancybox({
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	false
	});
	$(".openBook").fancybox({
		'width'				: '99%',
		'height'			: '99%',
		'autoScale'			: true,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	})

});
