function go(target) {
	location.href = '/wir/'+target;
}

function auto_loader() {
	set_selected_icon();
}

function set_selected_icon() {
//	try {
		var location = window.location.href.toLowerCase();
		var loc_split = location.split("/");
		var last_item = loc_split[loc_split.length-1];
		// last_item is empty or filled, because any redirect will lead to a trailing slash
		if (document.getElementById("div_btn_"+last_item) != null) {
			document.getElementById("div_btn_"+last_item).style.background = "url(/wir/files/daheim-in-sporch.de/layout/images/button3.png)";
		}
//	}
//	catch {}
}

