function lookup(inputString) {
	if(inputString.length == 0) {
		// Hide the suggestion box.
		jQuery('#suggestions').hide();
	} else {
    jQuery.post("http://www.bip.cz/wp-content/themes/bip_cz/js/rcp.php", {queryString: ""+inputString+""}, function(data){
			if(data.length >0) {
				jQuery('#suggestions').show();
				jQuery('#autoSuggestionsList').html(data);
			}
		});
	}
} // lookup
	
function fill(thisValue) {
	jQuery('#inputString').val(thisValue);
	setTimeout("jQuery('#suggestions').hide();", 200);
}
