$(document).ready(function(){

	$(".project img, .project-item img").hover(function(){
		$(this).fadeTo("fast", 0.6);
	},function(){
		$(this).fadeTo("fast", 1.0);
	});
	
	$(".project a").fancybox({'type' : 'image'});
	
 });
