window.onload = function() {
	initsite();
}

function initsite() {
	nr = 0;
	for (i in tc) {
		if (nr > 0) {
			document.getElementById(tc[i]).style.display = "none";
		}
		nr++;
	}
}

function wp_show(ort) {
	for (i in tc) {
		if (tc[i] != ort) {
			document.getElementById(tc[i]).style.display = "none";
		} else {
			document.getElementById(tc[i]).style.display = "block";
		}
	}
}

