$(document).ready(function(){
	
	$('ul.gallery a').fancybox({
		'titleShow'		: false,
		'cyclic'		:	'true',
		'overlayColor'	:	'#000'
	});
	
	$('ul.gallery li').hover(
		function () {
			$(this).children('.zoom_overlay').stop().fadeTo('fast', 1.0);
		}, 
		function () {
			$(this).children('.zoom_overlay').stop().fadeTo('fast', 0.0);
		}
	);
	
	$('ul.gallery li').mouseup(function() {$(this).children('a').trigger('click');});
	
});