$(document).ready(function () {
  $('#top_banners li').hover(function () {
    $('.subcontent',this).animate({
      marginTop:'0px',
      height:'238px'
    });
  },function () {
      $('.subcontent',this).animate({
      marginTop:'252px',
      height:'0px'
    }
    );
  }
  );

}
);
