$(function() {
  $("#projects li a").hover(
    function() { $(this).next().fadeIn(); }, function() { $(this).next().fadeOut(); }
  );
});
