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

function hide() {
	$('#loading-not').hide();
}

