$(document).ready(function(){
	$("#projects img").hover(function() {		
		$(this).fadeTo('normal',0.1);
	},function() {
		$(this).fadeTo('normal',1);
	});
});
