$(function() {
    var max = Math.max(
        $('#home-col1').height(),
        $('#home-col2').height(),
        $('#home-col3').height()
    );
    $('#home-col1').height(max);
    $('#home-col2').height(max);
    $('#home-col3').height(max);
});



