$(document).ready(function() {
var left_height = $('#two-col-1').height();
var right_height = $('#two-col-2').height();



if(right_height > left_height) {
  $('#two-col-1').height(right_height-3);
}
else {
  $('#two-col-2').height(left_height);
}





})
