/*$(document).ready(function () {
   $('DIV.featuredProductContainerRightMost').each(function() {
      obj_sibling = $('DIV:not(.featuredProductContainerRightMost)', $(this).parent());
      int_sibling_height = obj_sibling.height();
      int_this_height = $(this).height();
      if (int_sibling_height > int_this_height) {
         $(this).height(int_sibling_height);
      }
   });
});*/