jQuery(document).ready(function() {
    setHeight('.col');
});

var maxHeight = 0;
function setHeight(column) {
    //Get all the element with class = col
    column = jQuery(column);
    //Loop all the column
    column.each(function() {       
        //Store the highest value
        if(jQuery(this).height() > maxHeight) {
            maxHeight = jQuery(this).height();;
        }
    });
    //Set the height
    column.height(maxHeight);
}
