$(function(){
	
	/* Inicia funções principais  */
    /* ====================================================================== */
	
	initPNG();
	initMask();
	
});

function initMask()
{
	$(".mask_data").mask("99/99/9999");
	$(".mask_fone").mask("(99) 9999-9999");
	$(".mask_cpf").mask("999.999.999-99");
	$(".mask_cep").mask("99999999");
}

function initPNG()
{
	$(document).pngFix();
}

function abreTabela(tbl)
{
	$("#"+tbl).show();
	$(".tabela").not("#"+tbl).hide();
	
	/*$(".tabela").each(function(){
		
		var id = $(this).attr("id");
		
		alert(id);
		alert(tbl);
		
		if (tbl == id)
		{
			$("#"+tbl).show();
		}
		else
		{
			$(".tabela").hide();
		}
		
	});*/
}
