/*
 *
 */

$(function()
{
    //set height of columns
    var h1 = $(".col1").height();
    var h2 = $(".col2").height();
    var h3 = $(".col3").height();

    var hmax = Math.max(h1,h2,h3);

    $(".col1").css("height",hmax);
    $(".col2").css("height",hmax);
    $(".col3").css("height",hmax);

});


