Event.onReady(function() {
	if (!SF.Cookie.enabled())
		SF.Alert.show(decorators_default_cookieinfo);
	$A(document.getElementsByTagName("a")).each(function(el) {
		$(el).observe("focus", function() { el.blur(); });
	});
	if ($("citySelect")) {
		$("citySelect").observe("change", function() {
			SF.Cookie.createPersistent("city", $("citySelect").value); // TODO Change cookie name
			document.selCityForm.submit();
			SF.Cookie.erase("sortType");
			SF.Cookie.erase("sortDirection");
			SF.Cookie.erase("filterType");
			SF.Cookie.erase("filterValue");
			SF.Cookie.erase("sortTypeWhole");
			SF.Cookie.erase("showAllMode");
			SF.Cookie.erase("page");
			location = "http://" + host + "/?selCity=" + $("citySelect").value;
			//location.reload();
		});
		if ($("theatreDirect")) {
			$("theatreDirect").observe("change", function() {
				location = "http://"+ host +"/bio/Booking?cmd=listFilms&ft2=theatre&fv2="+ $("theatreDirect").value;
			});
		}
		
		//stax 20080102: Ärende: 41178, lagt till kontroll
		if ($("filmDirect")) {
			$("filmDirect").observe("change", function() {
				location = "http://"+ host +"/bio/Booking?cmd=listFilms&film="+ $("filmDirect").value;
			});
		}
		
		$("city").reset();
		
		//stax 20080102: Ärende: 41178, lagt till kontroll
		if ($("ticketDirect")) {
			$("ticketDirect").reset();
		}
	}
	//$("searchField").observe("focus", clearSearchField);
});

function clearSearchField() {
	$("searchField").value = "";
	$("searchField").stopObserving("focus", clearSearchField);
}
