function hidecat() {
	$('#categories').hide();
}
function showcat() {
	$('#suggestions').hide();
	$('#categories').show();
}

function lookup(inputString) {
	if (inputString.length < 3) {
		// Hide the suggestion box.
		$('#suggestions').hide();
	} else {
		$.post("rpc.php", {queryString: ""+inputString+""}, function(data) {
			if (data.length > 0) {
				$('#categories').hide();
				$('#suggestions').show();
				$('#autoSuggestionsList').html(data);
			}
		});
	}
} // lookup
function fill(thisValue) {
	$('#field').val(thisValue);
//	$('#inputString').val(thisValue);
	$('#suggestions').hide();
}
