jQuery().ready(function () {
  // Make spotlight and ambassadors-corner the same
  var spotlight = jQuery('#spotlight').height();
  var ambassador = jQuery('#ambassador-corner').height();
  if(spotlight < ambassador) {
    jQuery('#spotlight').height(ambassador + 'px');
  } else {
    jQuery('#ambassador-corner').height(spotlight + 'px');
  }
});
