/*
* Author:      Marco Kuiper (http://www.marcofolio.net/)
*/
/*google.load("jquery", "1.4.2");
google.load("jqueryui", "1.8.1");
google.setOnLoadCallback(function()
{
	// Fade out the suggestions box when not active
	 $("input").blur(function(){
	 	$('#suggestions').fadeOut();
	 });
	 $("#infoTabs").tabs({fx:{opacity: "toggle"}}).tabs('select', 0);
});
*/
function lookup(inputString,sell) {
	var postPage = "/display/jqSearchResults2.cfm";
	if (sell == 1) {
		postPage = "/display/jqSearchResults2-sell.cfm";
	}
	if(inputString.length == 0) {
		$('#suggestions').fadeOut(); // Hide the suggestions box
	} else if (inputString.length == 1) {
		// do nothing until 2 char
		$('#suggestions').fadeOut(); // Hide the suggestions box
	} else {
		$.post(postPage, {queryString: ""+inputString+""}, function(data) { // Do an AJAX call
			$('#suggestions').fadeIn(); // Show the suggestions box
			$('#suggestions').html(data); // Fill the suggestions box
		});
	}
}
