jQuery(document).ready(function(){
	    jQuery(".proj_thumb img").hover(
			function() {
			jQuery(this).animate({"opacity": "0"}, "fast");
			},
			function() {
			jQuery(this).animate({"opacity": "1"}, "fast");
			}
		);
});

