$(".box-fixed.taxon").hover(
  function () {
    $(this).find(".info").animate({ 
            bottom: "-40px"
          }, 150, "swing");
  }, 
  function () {
    $(this).find(".info").animate({ 
            bottom: "-82px"
          }, 500, "swing");
  }
);
$(".info").click(function(e) {
  window.location = $(this).find("a.small-button").attr("href");
});
