/**
 * @author Steve Clason
 */


$(document).ready(function() {
  var lh = $('#homeEvents').height();
  var rh = $('#homeNews').height();
  //console.log ('left : ' + lh);
  //console.log ('right : ' + rh);
  if (lh >= rh){
    $('#homeNews').height(lh);
  } else {
    //alert('right : ' + rh);
    $('homeEvents').height(rh);
  }
 });
