When the animation starting, the link's top and left paddings and borders venish immediatly.

$(document).ready(function(){
  $("a.logo").click(function(){
    $(this).fadeOut(2000, function(){
      document.location=$(this).attr("href");
      $(this).fadeIn(0);
    });
    return false;
  });
});