$(document).ready(function(){
    $("#lista_links").pageLoadingHTML(function() {
        $("tr:odd").addClass('odd').css('z-index','0');
       adicionarTooltip();
    });

    $("#dataInicial").mask("99/99/9999");
    $("#dataFinal").mask("99/99/9999");
    $("input[name='filtarForum']").click(function(){
        re = new RegExp("[a-zA-Z0-9àáâãéêíóôõúüçÀÁÂÃÉÊÒÓÔÕÚÜÇ]");
        palavraChave = $(this).parent().find("input[name='palavraChave']").val();
        if(palavraChave !="" && re.exec(palavraChave)==null){
            return false
        }
    });
    $("input[name='responder']").click(function(){
        atualizarEditores();
        tipo = $(this).parent().find("select[name='idTipoResposta']").val();
        comentario = $(this).parent().find("textarea[name='comentario']").val();
        strInputCode = comentario.replace(/&(lt|gt);/g, function (strMatch, p1){
 		 	return (p1 == "lt")? "<" : ">";
 		});
 		var comentarioSemHTML = strInputCode.replace(/<\/?[^>]+(>|$)/g, "");
        if($.trim(comentarioSemHTML).length <= 0 || tipo == ""){
            $(this).after("<em class=\"campoInvalido\">Você deve selecionar um tipo de resposta.</em>");
            return false;
        }
    });

    $(function(){ $('.igualar_altura').equalHeights(); });

});

