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