function suggest(inputString){
		if(inputString.length == 0) {
			$('#results').fadeOut();
		} else {
			$.post("autoComplete.php", {queryString: ""+inputString+""}, function(data){
				if(data.length >0) {
					$('#results').fadeIn();
					$('#results').html(data);
				}

			});
		}
	}

	function fill(thisValue) {
		$('#fkeyword').val(thisValue);
		setTimeout("$('#results').fadeOut();", 100);
	}
	function fade(){
		$('#results').fadeOut();
	}

