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




