$(document).ready(function(){
  $(".ctr").each(function(){
      // find the tallest title

	  var maxh = 0;
      $(this).find(".cAName").each(function() {
          if ($(this).height() > maxh)
             maxh = $(this).height();
      });
      $(this).find(".cAName").height(maxh+5);


      var maxh = 0;
      $(this).find(".cAImg").each(function() {
          if ($(this).height() > maxh)
             maxh = $(this).height();
      });
      $(this).find(".cAImg").height(maxh+5);


	  var maxh = 0;
      $(this).find(".sectionPrice").each(function() {
          if ($(this).height() > maxh)
             maxh = $(this).height();
      });
      $(this).find(".sectionPrice").height(maxh+5);  

	});

  $(".pctr").each(function(){
      // find the tallest title

	  var maxh = 0;
      $(this).find(".cAName").each(function() {
          if ($(this).height() > maxh)
             maxh = $(this).height();
      });
      $(this).find(".cAName").height(maxh+5);

      var maxh = 0;
      $(this).find(".cAImg").each(function() {
          if ($(this).height() > maxh)
             maxh = $(this).height();
      });
      $(this).find(".cAImg").height(maxh+5);


	  var maxh = 0;
      $(this).find(".sectionPrice").each(function() {
          if ($(this).height() > maxh)
             maxh = $(this).height();
      });
      $(this).find(".sectionPrice").height(maxh+5);  

	});

})
