$(function() {
	
	$(".project,").hover(function() {
    $(this).children("img").fadeTo(0, 100)
           .end().children(".info").show();
}, function() {
    $(this).children("img").fadeTo(100, 1)
           .end().children(".info").hide();
});


  
  

});

