$(document).ready(function() {
	equalizeColumns();
});

function equalizeColumns(){
	setHeight('.equalCol');
}


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