
var ajaxFinder = function() {
	var query = $('#search_box')[0].value;
	if(query != "Sök på sidan..." && query != ""){
		showResults();
	}
	return false;
}

function showResults() {
	var query = $('#search_box')[0].value;
	if (query == "" || query.length == 1) { return false; }

	$("#search_result").addClass("loading").html("Söker efter <em>"+query+"</em> ...");
	$('#search_result_container').slideDown('slow');

	$.get("http://www.psykologifabriken.se/index.php?ajax=true&s="+query, function (response) {
		$("#search_result").slideUp('fast', function() {
			$("#search_result").removeClass('loading').html(response).slideDown('slow');
		});
	});

	return false;
}

function hideResults() {
	$('#search_result_container').slideUp('slow');
}
