$(function() {
    var col1 = $('#lcolumncontacte').height();
    var col2 = $('#contentcontacte').height();
    if (col1 >= col2) {
        $('#lcolumncontacte').css('border-right', 'dashed 1px #575756');
    } else {
        $('#lcolumncontacte').height(col2);
        $('#lcolumncontacte').css('border-right', 'dashed 1px #575756');
        //$('#contentcontacte').css('border-left', 'dashed 1px #575756');
    }
});

