$(function() { 
  $("#additional").hide();
  $("#content").css("height", "19em");

  $("#content").hover(
    function() { 
      $("#content").animate({ height: "22em" }, "fast"); 
      $("#additional").fadeIn();
    },
    function() {
      $("#additional").fadeOut();
      $("#content").animate({ height: "19em" }, "fast");
    });
});
