function buscador() {
	jQuery(document).ready(function(){
	var nombre;
	nombre = jQuery('#texto').val();
	jQuery.get("buscadex.php", { q: nombre }, 
		function(data){
			jQuery('#resultados').replaceWith( data );
		});
	});
};
jQuery(document).ready(function() {
jQuery('#texto').blur(function() {
	jQuery("#resultados").fadeOut("fast");
});
});
