// Autocompleter (c)2009 by Hetfield - http://www.MerZ-IT-SerVice - Begin
	function lookup(inputString) {
		if(inputString.length == 0) {
			// Hide the suggestion box.
			$('#suggestions').hide();
		} else {
			$.post("autocomplete.php", {queryString: ""+inputString+""}, function(data){
				if(data.length >0) {
					$('#suggestions').show();
					$('#autoSuggestionsList').html(data);
				}
			});
		}
	} // lookup
	
	function fill(thisValue) {
		$('#inputString').val(thisValue);
	}
	function closing() {
		setTimeout("$('#suggestions').hide();", 100);
	}
// Autocompleter (c)2009 by Hetfield - http://www.MerZ-IT-SerVice - End
