jQuery(document).ready(function() {
	jQuery("#loading").ajaxStart(function(){
		jQuery(this).show();
	});
	jQuery("#loading").ajaxStop(function(){
		jQuery(this).hide();
	});
});


function mostraloginmt(){
	jQuery("#preto").css("width","100%");
	jQuery("#preto").css("height","10000px");
	jQuery("body").css("overflow","hidden");
	document.getElementById("mostratelalogin").style.display = "block";
}




function fechaloginmt() {
	jQuery("body").css("overflow","visible");
	document.getElementById("mostratelalogin").style.display = "none";
}


function getConteudo() {
	jQuery.ajax({
		type: "GET",
		url: "new_tela_login.php",
		//data: "tipo="+tipo,
		success: function(o){
			jQuery("#mostratelalogin").html(o);
		}
		
	});	
}

