/* document */
$(document).ready(function(){
	$("a[@href^=http]").attr('target',	'_blank');
	$("#btn_envhome").click(function(e){
		e.preventDefault();
		$.post('./modulos/valida-login-usuario.php',
		{
			post:'post',
			postagem:$("#postagem").val(),
			ex_usuario:$("#ex_usuario").val(),
			ex_senha:$("#ex_senha").val(),
			ex_esqueci:$("#ex_esqueci").val()
		}, function(data)
		{
			retorno=data.split(';');
			if(retorno[0]=='2')
			{
				$("#ex_erro").hide();
				if($("#ex_esqueci").is(':checked'))
				{
					$("#ex_erro").html('Identifica&ccedil;&atilde;o inv&aacute;lida!');
					$("#ex_erro").fadeIn("slow").show();
				}
				else
				{
					$("#ex_erro").html('Identifica&ccedil;&atilde;o	e/ou senha inv&aacute;lidos!');
					$("#ex_erro").fadeIn("slow").show();
				}
			}
			else
				if(retorno[0]=='0')
					window.location.href=retorno[1];
				else
					$('#externo').submit();
		});
	});
	$("#ex_esqueci").change(function(){
		if($(this).is(':checked'))
			$("#ex_limpa").fadeOut();
		else
		$("#ex_limpa").fadeIn();
	});
});