// @Author: João Luiz Vilacia Barbosa

jQuery(document).ready(function(){
	var pg = jQuery("#pg").val();
	if(pg == "esqueci_senha")
	{
		jQuery("#recuperar").click(function(){
			var matricula = jQuery("#matricula").val();
			var email 	= jQuery("#email").val();
			
			jQuery.post("admin/control/esqueciSenha.php?acao=esqueci_senha&matricula="+matricula+"&email="+email, function(retorno){
				jQuery("#cont").html(retorno);
			});
		});
	}
	

});