

function lookup(searchString) {
	
	
	if(searchString.length == 0) {
		$('#suggestions').fadeOut('fast'); // Hide the suggestions box
	} else {
		
	
		var date = new Date();
		var url = '/ajaxRemote?timestamp=' + date.getTime();
		if (typeof xpr != 'undefined') xpr.abort();
		xpr = $.ajax({
			   type: "POST",
			   url: url,
			   cache: true,
			   data: "action=quickSearch&queryString="+searchString+"&lookingFor="+$('#lookingFor').val(),
			   success: function(data){
				   $('#suggestions').fadeIn('fast'); // Show the suggestions box
				   $('#suggestions').html('<p id="searchresults">'+data+'</p>'); // Fill the suggestions box
			   }
			 });
		
		
	}
	
}
