/* ajax search */
function lookup(inputString) {
	if(inputString.length == 0) {
		$('#suggestions').fadeOut(); // Hide the suggestions box
	} else {
			$.post("http://www.tadawulfx.com/public/index.php?option=com_ajaxsearch&task=ajaxsearch&no_html=1", {queryString: ""+inputString+""}, function(data) { // Do an AJAX call
			$('#suggestions').fadeIn(); // Show the suggestions box
			$('#suggestions').html(data); // Fill the suggestions box
		});
	}

	$("input").blur(function(){
	 	$('#suggestions').fadeOut();
	 });
}
