 
  
   
  
  $(function() {
    var imagesHeight = $('.single .images').height(),
        summaryHeight = $('.single .summary').height(),
        appSellHeight = imagesHeight > summaryHeight ? imagesHeight : summaryHeight;
    $('.single .appsell-custom').css({
        'min-height': appSellHeight + 'px'
    });
});