$(document).ready(function(){
	$('#header').click(function(){
		location.href = "/";
	});
	$('.item').hover(function(){
		$(this).find('.image img').animate({opacity: "1.0"}, 200);
	}, function(){
		$(this).find('.image img').animate({opacity: "0.935"}, 200);
	});
	 $('.images a').fancybox({
		'overlayShow': true,
		'overlayOpacity': 1,
		'padding':0
	});
});

