$(document).ready(function() { 
  $('.entry:last').addClass('last');	
  
  var height = $('.contact #beta').height();
  if (height > $('.contact #gamma').height()) {
    $('.contact #gamma').height(height);
  }

  var height = $('.single #gamma').height();
  if (height > $('.single #beta').height()) {
    $('.single #beta').height(height);
  }
    
}); 

