$(document).ready(function(){
  $("#recHistTable tr").each(function(){
      var maxh = 0;
      $(this).find(".recImg").each(function() {
          if ($(this).height() > maxh)
             maxh = $(this).height();
      });
      $(this).find(".recImg").height(maxh);
  });
  $("#recHistTable tr").each(function(){
      var maxh = 0;
      $(this).find(".recItem").each(function() {
          if ($(this).height() > maxh)
             maxh = $(this).height();
      });
      $(this).find(".recItem").height(maxh);
  });
  $(".contentsTable tr").each(function(){
      var maxh = 0;
      $(this).find(".vItem").each(function() {
          if ($(this).height() > maxh)
             maxh = $(this).height();
      });
      $(this).find(".vItem").height(maxh);
  });
})
