function external_link(element) {
 window.open(element.href);
 return false;
}

function set_cookie() {
	$.cookie('searchform_ort',					$("#ort").val());
	$.cookie('searchform_tag',					$("#tag").val());
	$.cookie('searchform_datum_beachten',		$("input[name=datum_beachten]").attr("checked"));
	$.cookie('searchform_ort_beachten',			$("input[name=ort_beachten]").attr("checked"));
	$.cookie('searchform_weinprobe',			$("input[name=weinprobe]").attr("checked"));
	$.cookie('searchform_kellerbesichtigung',	$("input[name=kellerbesichtigung]").attr("checked"));
	$.cookie('searchform_vinothek',				$("input[name=vinothek]").attr("checked"));
	$.cookie('searchform_parkplaetze',			$("input[name=parkplaetze]").attr("checked"));
	$.cookie('searchform_spielplatz',			$("input[name=spielplatz]").attr("checked"));
	$.cookie('searchform_hunde',				$("input[name=hunde]").attr("checked"));
}

function read_cookie() {
	if($.cookie('searchform_ort') != null) {
		$("#searchform select[name=ort] option[value=" + $.cookie('searchform_ort') + "]").attr('selected', 'selected');
		$("#searchform input[name=tag]").val($.cookie('searchform_tag'));
		$("#searchform input[name=datum_beachten]").attr("checked", $.cookie('searchform_datum_beachten') == 'true');
		if($.cookie('searchform_datum_beachten') == 'false')
			$("#searchform input[name=tag]").attr('disabled', true);
		$("#searchform input[name=ort_beachten]").attr("checked", $.cookie('searchform_ort_beachten') == 'true');
		if($.cookie('searchform_ort_beachten') == 'false')
			$("#searchform select[name=ort]").attr('disabled', true);
		$("#searchform input[name=weinprobe]").attr("checked", $.cookie('searchform_weinprobe') == 'true');
		$("#searchform input[name=kellerbesichtigung]").attr("checked", $.cookie('searchform_kellerbesichtigung') == 'true');
		$("#searchform input[name=vinothek]").attr("checked", $.cookie('searchform_vinothek') == 'true');
		$("#searchform input[name=parkplaetze]").attr("checked", $.cookie('searchform_parkplaetze') == 'true');
		$("#searchform input[name=spielplatz]").attr("checked", $.cookie('searchform_spielplatz') == 'true');
		$("#searchform input[name=hunde]").attr("checked", $.cookie('searchform_hunde') == 'true');
	}
}

$(document).ready(function() {
	$('#searchform select, #searchform input').change(set_cookie);
	read_cookie();
});
