$(function(){
 maxheightc=0; 
 obj=$("div.simpleCart_shelfItem_inner_inner");
 obj.each(function(){
  if($(this).height()>maxheightc){
   maxheightc=$(this).height();
  }
 });
$("div.simpleCart_shelfItem_inner_inner").height(maxheightc);


});

