//==========================================================================================================================================================================================
//==========================================================================================================================================================================================
// 																					    PARA O LOGIN
//==========================================================================================================================================================================================
//==========================================================================================================================================================================================
function atualiza(){
	setTimeout("location.reload(true);",3000);
	//$jx("#refresh").html("<meta http-equiv='refresh' content='2;url=http://www.lojabysamia.com.br/home'>");
}

function acao_login(){
//$jx("#btn_login").click(function () {
	var $jx = jQuery.noConflict();
	
	
	$jx.ajax({
			url: "../acoes/acao_login.php",
			type: "POST",
			data: ({ajax : "ok", userl:$jx("#userl").val(), passl:$jx("#passl").val()   }),
			dataType: "json",

			beforeSend: function(){

				$jx("#tit_alertas").html("<div style='height:22px;'>&nbsp;</div>");
				$jx("#msg_alertas").html("<div style='margin-left:auto; margin-right:auto; width:200px;'><div style='float:left;'><img src='images/loading2.gif' alt=''></div> <div style='float:left;'><img src='images/carregando_txt.jpg' alt=''></div></div>");

			},
			
			success: function(data){

				if(data.tipo=='error'){ 
					img_tit='img_tit_error.gif'; 
					img_icon='error.png'; 
				}else if(data.tipo=='warning'){
					img_tit='img_tit_warning.gif'; 
					img_icon='warning.png'; 
				}else if(data.tipo=='success'){
					img_tit='img_tit_success.gif'; 
					img_icon='success.png';
					
					$jx("#userl").val('');
					$jx("#passl").val('');
					
					$jx("#div_links_cad_recupera").hide();
					$jx("#div_login_txts_boxs").hide();
					
					$jx("#divmsg_login_welcome").html(""+data.final+"");
					
					atualiza();
					
				}
				
				
				$jx("#carregando").hide();
				$jx("#carregando").html("");
				
				$jx("#div_flash").hide();
				$jx("#roda").hide();
				$jx("#esq_meio_dir").hide();
				$jx("#fim_esq_meio_dir").hide();
								
				$jx("#esq_meio_dir_alerta").show();
				$jx("#div_alerta_all").show();
				
				$jx("#tit_alertas").html("<img src=\"images/"+img_tit+"\">");
				$jx("#msg_alertas").html("<img src=\"images/alerta/"+img_icon+"\" align=\"absmiddle\"> "+data.mensagem);

			},
			
			error: function(msg){
				//alert(msg.status);
			}
	
	})

}
//});
