/*
* Author:      Marco Kuiper (http://www.marcofolio.net/)
*/
//google.load("jquery", "1.3.1");
//google.setOnLoadCallback(function()
//{
	// Safely inject CSS3 and give the search results a shadow

	
	// Fade out the suggestions box when not active
	
//});

var key_count_global = 0;
var timer; // Global variable


function lookup(inputqry) {
	if(inputqry.length == 0) {  
		$('#suggestionouter').fadeOut(1000); // Hide the suggestions box
	} else if (inputqry.length >= 3)  {    
      $('#inputqry').css('background-image', 'url(images/load.gif)');              
	   	$.get("Produkte/produkte.php?kategorie=Suche&live=1&", {qry: ""+inputqry+""}, function(data) { // Do an AJAX call
			$('#suggestions').html(data); // Fill the suggestions box 
      //$('#suggestionouter').hide();     
			$('#suggestionouter').slideDown(800); // Show the suggestions box
			$('#suggestionouter').fadeIn(800);     
			$('#suchtext').css('background-image', 'url(images/lupe.png)'); 
		});
	}
}
