$(document).ready(function() {
  $('a').hover(function(){
    $(this).addClass("hover").fadeTo(300,.7);
  },function(){
    $(this).removeClass("hover").fadeTo(300,1);
  });
});

