jQuery(document).ready(function()
{
	jQuery("input").blur(function(){
		jQuery('#suggestions').fadeOut();
	});
	
	jQuery('#loading-not').hide();
	jQuery('#loading').hide();
	
	jQuery("#loading").bind("ajaxSend", function(){
			jQuery(this).show();
			jQuery('#loading-not').hide();
	}).bind("ajaxComplete", function(){
			jQuery(this).hide();
			jQuery('#loading-not').show();
	});
})

function lookup(inputString,id, order) {
	if(inputString.length < 3) {
		jQuery('#suggestions').fadeOut();
		jQuery('#loading-not').hide();
	} else {
		jQuery.post("index.php?task=ajax&option=com_search&tmpl=component&type=raw&id="+id+"&ordering="+order , {queryString: ""+inputString+""}, function(data) {
			jQuery('#suggestions').fadeIn(); // Show the suggestions box
		    jQuery('#suggestions').html(data); // Fill the suggestions box
		});
	}
}

function hide() {
	jQuery('#loading-not').hide();
}


