google.setOnLoadCallback(function()
{
	var cssObj = { 'box-shadow' : '#888 5px 10px 10px',
		'-webkit-box-shadow' : '#888 5px 10px 10px',
		'-moz-box-shadow' : '#888 5px 10px 10px'}; 
	$("#suggestions").css(cssObj);
	
	// Fade out the suggestions box when not active
	 $("input").blur(function(){
	 	$('#suggestions').fadeOut();
	 });
});

function lookupS(inputString) {
	if(inputString.length == 0) {
		$('#suggestions').fadeOut();
	} else {
		$.post("/suggest.php", {queryString: ""+inputString+""}, function(data) { 
			$('#suggestions').fadeIn();
			$('#suggestions').html(data);
		});
	}
}
