$(document).ready(function() {
	$.ajaxSetup({ cache: true });
	$.getScript("/media/js/jquery/jquery.autocomplete.min.js", function(data, textStatus){
		setTimeout(function() {
			$("#id_searchtext").autocomplete("/suche/autocomplete/", { minChars: 2 });
			$("#id_q").autocomplete("/suche/autocomplete/", { minChars: 2 });
		}, 250);
		$.ajaxSetup({ cache: false });
	});
	$("head").append('<link type="text/css" rel="stylesheet" href="/media/js/jquery/jquery.autocomplete.css" />');
	$("#id_searchtext")
		.data('default', $("#id_searchtext").val())
		.focus(function(){ if($(this).val() == $(this).data('default')) $(this).val(''); })
		.blur(function(){ if($(this).val() == '') $(this).val($(this).data('default')); });
});
