$(function() {

	$( "#txtName" ).autocomplete({
		source: "search.php",
		minLength: 1
	});
	
	$( "#txtType" ).autocomplete({
		source: "searchType.php",
		minLength: 1
	});
	
	$( "#txtStatus" ).autocomplete({
		source: "searchStatus.php",
		minLength: 1
	});
	
});