/*
* Author:      Marco Kuiper (http://www.marcofolio.net/)
*/


function lookup(inputString) {
	if(inputString.length == 0) {
		$('#sonuc').fadeOut(); // Hide the suggestions box
	} else {
		$.post("search.asp", {queryString: ""+inputString+""}, function(data) { // Do an AJAX call
			$('#sonuc').fadeIn(); // Show the suggestions box
			$('#sonuc').html(data); // Fill the suggestions box
		});
	}
}
