 $().ready(function(){
		$("input[name=buscar]").keypress(function(){
			$("#conteudo .conteudo_esquerdo").html('<h1>Carregando...</h1>');	
			$.post("pesquisar.php",
				  {buscar:$(this).val()},
				   function(resultado){
					   $("#conteudo .conteudo_esquerdo").html(resultado);
					   
				   })
			
			
											   
	    })
				
				  
 });