/*

* Author:      Marco Kuiper (http://www.marcofolio.net/)

*/



function j_search_products(inputString) {

	if(inputString.length == 0) {

		$('#suggestions_products').fadeOut(); // Hide the suggestions box

	} else {

		$.post("/j_search_products.php", {queryString: ""+inputString+""}, function(data) { // Do an AJAX call

			$('#suggestions_products').fadeIn(); // Show the suggestions box

			$('#suggestions_products').html(data); // Fill the suggestions box

		});

	}

}


function j_search_cas(inputString) {

	if(inputString.length == 0) {

		$('#suggestions_cas').fadeOut(); // Hide the suggestions box

	} else {

		$.post("/j_search_cas.php", {queryString: ""+inputString+""}, function(data) { // Do an AJAX call

			$('#suggestions_cas').fadeIn(); // Show the suggestions box

			$('#suggestions_cas').html(data); // Fill the suggestions box

		});

	}

}
