jQuery(document).ready(function()
{
	jQuery(".ajaxsearch input:reset").click(function(){
	 	jQuery('#suggestions').fadeOut();
	 });
	jQuery('.ajaxsearch form').submit(function(){
		return false;
	});
	jQuery('#inputString').attr('autocomplete','off');
	
	jQuery('.actionToggle').css('visibility','inherit');
	
	jQuery(".actionToggle").bind("ajaxSend", function(){
		jQuery('.actionToggle').attr('id','loading');
	 }).bind("ajaxComplete", function(){
	    jQuery('.actionToggle').attr('id','loading-not');
	 });
});

function lookup(inputString,id, order) {
	if(inputString.length < 3) {
		jQuery('#suggestions').fadeOut(); 
	} 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
		});
	}
}

