
function clearInput(e){
if(e.value=='Suche...')e.value="";
} 


$j(document).ready(function() {
						   
			
			
			
    //If Keydown In Search Box

	$j("#searchbox").keyup(function(){
								   
						
								   			
	//If Search Box Value is Nothing
								   			   
		 if($j("#searchbox").val() == "")
		{
			
	//Hide the Div, No Search Query Is Given. 		
			
			$j("#resultsContainer").hide("blind");
			exit();
			
		} else {
								   
	//Get the Result		

        getResults()
		
		}
		
	});
	
	
	

	function getResults()
	{
		
		 if($j("#searchbox").val() == "")
		{
			
	//Hide the Div, No Search Query Is Given. 		
			
			$j("#resultsContainer").hide("blind");
			exit();
		}


		
	
	//Use Searches.php to find result
	
		$j.get("searches.php",{ query: $j("#searchbox").val(), type: "results"}, function(data){
																					 
	//Insert HTML and Show The Div


  if (!$j("#resultsContainer").is(":visible")) {

$j("#resultsContainer").show("blind");

}
	
			$j("#resultsContainer").html(data);
                        
			
			
			
		});
	}
	
	
	
	
});
