$(document).ready(function()
{
	$("#searchbox").keyup(function()
	{
		$.get("includes/search.php",{query: $("#searchbox").val(), type: "count"}, function(data){
		
			$("#buttontext").html(data + " Results Available");
		
		});
	});
	
	$("#searchbox").keyup(function(event)
	{
		if(event.keyCode == "13")
		{
			getResults();
		}
	});
	
	$("#submitbutton").click(function(){
		getResults();	
	});
	
	$("#closebutton").click(function()
	{
		$("#resultsContainer").hide("slow");
	});

	function getResults()
	{
		$.get("includes/search.php",{query: $("#searchbox").val(), type: "results"}, function(data){		
			$("#resultsContainer").html(data);
			$("#resultsContainer").show("slow");
		});
	}
	
	var theHeight = $(document).height();
});