$(document).ready(function() {
	$("#nome_do_autor").keyup(function(event){
		if(event.keyCode == "13")
		{
			getResults();
		} else {
		$.get("ajax_pesquisa_autores.php",{query: $("#nome_do_autor").val(), type: "count"}, function(data){
		$("#buttontext").html("escolher de " + data + " Resultados");
		});
		}
	});
	
	
$("#botao_pesquisa_autores").click(function(){
	getResults();
});

	function getResults()
	{
		$.get("ajax_pesquisa_autores.php",{query: $("#nome_do_autor").val(), type: "results"}, function(data){
			$("#contentor_autores").html(data);
		});
			$("#contentor_autores").css({"opacity" : "0", "display" : "block"}).animate({"opacity" : "1"});
	}
});
