function selectItem(li) {
	return false;
}
function formatItem(row) {
	//return row[0] + "<br><i>" + row[1] + "</i>";
	return "<a href=\""+row[1]+"\" onclick=\"document.location.href='"+row[1]+"'\" onkeypress=\"document.location.href='"+row[1]+"'\">"+row[0]+"</a>";
}
$(document).ready(function() {
	$("#autocomplete").autocomplete("/script/ajax/search.php", { 
		minChars:3, 
		matchSubset:1, 
		matchContains:1, 
		cacheLength:10, 
		onItemSelect:selectItem, 
		formatItem:formatItem, 
		selectOnly:1 
	});
});

