// JavaScript Document
	function lookup(source,inputString) {
		if(inputString.length == 0) {
			// Hide the suggestion box.
			$("#suggestions"+source+"").hide();
		} else {
			$.post("/inc/sphinxresult.php?source="+source+"", {queryString: ""+inputString+""}, function(data){
		
				if(data.length >0) {
					$("#suggestions"+source+'').show();
					$("#autoSuggestionsList"+source+'').html(data);
				}
			});
		}
	} // lookup
	
	function fill(thisValue) {
		$('#inputString').val(thisValue);
		setTimeout("$('#suggestions')"+source+".hide();", 200);
	}
	
	
	
