﻿$(document).ready(function(){

  // fixed heights
  var podMatchHeight = 165;
  $("div.podMatchHeight div.content").each(function(){
    if($(this).height() > podMatchHeight)
    {
      podMatchHeight = $(this).height()
    } // if
  });
  
  $("div.podMatchHeight div.content").each(function(){
    $(this).attr("style", "height: " + podMatchHeight + "px !important");
  });
  
});