/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


$(document).ready(function() {       
    equalHeight($(".columnas"));
});


function equalHeight(group) { 
        group.height("auto")
        tallest = 0;
        group.each(function() {
            thisHeight = $(this).height();
            if(thisHeight > tallest) {
                tallest = thisHeight;
            }
        });
    group.height(tallest)
}



