$(document).ready(function(){
  
  $('tr').each(function(){
    max_height = 0;
    $(this).find('.prodAlign').each(function(){
      if ($(this).height() > max_height) {
        max_height = $(this).height();
      }
    });
    $(this).find('.prodAlign').css({
      'height':max_height
    });
  });
});