function lookup(inputString){
	if(inputString.length == 0){
		$('#suggestions').hide();
	}else{
		$.post("/include/all_products.php", {q: ""+inputString+""}, function(data){
			if(data.length >0){
				$('#suggestions').show();
				$('#autoSuggestionsList').html(data);
			}
		});
	}
}

function fill(thisValue){
	$('#search_input').val(thisValue);
	setTimeout("$('#suggestions').hide();", 200);
	document.search_form.submit()
}