function lookup(inputString) 
{
	if(inputString.length == 0) 
	{
		// Hide the suggestion box.
		$('#suggestions').hide();
	} 
	else 
	{
		$.post("autocomplete.inc.php", {queryString: ""+inputString+""}, 
			function(data)
			{
				if(data.length >0) 
				{
					$('#suggestions').show();
					$('#autoSuggestionsList').html(data);
				}
			});
	}
}
	
function fill(thisValue) 
{
	//thisValue = thisValue.replace("\'","b");
	
	$('#searchButton').val(thisValue);
	//document.getElementById("searchButton").value = thisValue;
	setTimeout("$('#suggestions').hide();", 200);
}