$(function() {
  $("a > img").hover(function() {
    $(this).fadeTo("fast",0.5);
  }, function(){
    $(this).fadeTo("slow",1.0);
  });
});
