Como veo en la hoja de estilos que le pones line-height:10em puedes jugar con eso para también animarlo y bajar el texto, quedaría algo así:
Código Javascript
:
Ver original$("li.link").hover(function(){
$(this).animate({ height: "130px" });
$(this).children("a").animate({"line-height":"14em" });
}, function() {
$(this).animate({ height: "90px" });
$(this).children("a").animate({"line-height":"10em" });
});
$(".current").hover(function(){
$(this).animate({ height: "130px" });
});