$(document).ready(function(){    var col1 = $('#colum').height();    var col2 = $('#interna').height();        var maxH = (col1 > col2) ? col1 : col2;        $('#colum').css('height', maxH);    $('#interna').css('height', (maxH - 2));        $("#button").click( function(){        var col1 = $('#colum').height();        var col2 = $('#interna').height();        var form = $('#formulario').height();        var formReal = col2 - form;                var maxH = (col1 > col2) ? col1 : col2;        maxH = maxH + 60;                $('#colum').css('height', maxH);        $('#interna').css('height', (maxH - 2));    });        $("FORM .data").mask("99/99/9999");    $("FORM .telefone").mask("(99) 9999-9999");    $("FORM .cpf").mask("999.999.999-99");    $("FORM .cep").mask("99999-999");    $("FORM .anac").mask("999999");        $("#chat a img").attr("src", "img/btnChat.png");        $("#chat a").mouseover(function(){        $("#chat a img").attr("src", "img/btnChatHover.png");    });        $("#chat a").mouseout(function(){        $("#chat a img").attr("src", "img/btnChat.png");    });        $("#chat a img").css("margin", "5px 0px 0px -8px");    $("#chat a").css("background", "none");        $('table [title]').colorTip({        color:'blue',        timeout: 0    });});
