﻿$(function() {
    $("#login").focus();
});

function abreConteudo(pagina){
	
	$.ajax({type: 'get',
			url: pagina,
			beforeSend: function() {
				$('#DIV_retorno_index').css("display","none");
				$('#TD_corpo_01').html("carregando...");
			},
			success: function(data) {
				$('#TD_corpo_01').css("font-size","12px");
				$('#TD_corpo_01').html(data);
			},
			error: function(erro) {
				$('#TD_corpo_01').html("Não foi possível carregar o conteúdo<br /><br /><a href=\"index.php\">Clique aqui e tente novamente</a>");
			}
	});
}