function lookup(inputString) {
	if(inputString.length == 0) {
		// Hide the suggestion box.
		$('#suggestions').hide();
	} else {
		$.post("/includes/suggestions.php", {queryString: ""+inputString+""}, function(data){
			if(data.length >0) {
				$('#suggestions').show();
				$('#autoSuggestionsList').html(data);
			}
		});
	}
} // lookup

function fill(thisValue) {
	$('.ibuscador').val(thisValue);
	setTimeout("$('#suggestions').hide();", 200);	
}

$().ready(function() {
	$("#suggestions").click(function() {
		if(!document.getElementById('listaVacia'))
			document.buscar.submit();
	});
});
