google.load("jquery", "1.3.1");
google.setOnLoadCallback(function()
{
	
	// Fade out the suggestions box when not active
	 $("input").blur(function(){
	 	$('#suggestions').fadeOut();
	 });
});

function lookup(inputString) {
	if(inputString.length <= 2) {
		//$('#suggestions').fadeOut(); // Hide the suggestions box
	} else {
			$.post("http://www.oneeleventools.com/Scripts/load_search_results.php", {queryString: ""+inputString+""}, function(data) { // Do an AJAX call
			$('#suggestions').fadeIn(); // Show the suggestions box
			$('#suggestions').html(data); // Fill the suggestions box
		});
	}
}
