$('.home-page-header .span-2').hover(
  function () {
    $(this).find('h2').stop().animate({
      top: "-305px"
    }, 300, "easeInOutQuad");
  },
  function () {
    $(this).find('h2').stop().animate({
      top: "176px"
    }, 300, "easeInOutQuad");
  }
);

$('.home-page-header .span-2').linkify();
// $('.span-2 .description').equalHeights();    
