$(document).ready(function() {


	$("#searchbox").keyup(function(){
			
			getResults();
		
	});
	
	$("#searchbox").keyup(function(event){

		if(event.keyCode == "13")
		{
			getResults();
		}

	});
	

	function getResults()
	{
		my_lang_id=document.getElementById('mylang_id').value;
		$.get("/search.php",{ query: $("#searchbox").val(),lang_id: ""+my_lang_id+"", type: "results"}, function(data){
		
			
			
			if ($("#searchbox").val()>'') { $("#resultsContainer").html(data); $("#resultsContainer").show("show");  } else { $("#resultsContainer").hide("hide"); }
			
		});
	}

});
