$(function() {
	
	$("#edit").autocomplete({
	    source: "/editors.php",
	    minLength: 3
	});
	$("#autor").autocomplete({
	    source: "/autors.php",
	    minLength: 3
	});
	$("#titol").autocomplete({
	    source: "/titols.php",
	    minLength: 4
	});
});

