aktiv = 0;
function show_sub(sub) {		
				document.getElementById(sub).style.visibility = "visible";
				window.clearTimeout(aktiv);
				if (sub == "unt") {
				hide('ref');
				hide('akt');
				hide('rec');
				}
				if (sub == "ref") {
				hide('unt');
				hide('akt');
				hide('rec');
				}
				if (sub == "akt") {
				hide('unt');
				hide('ref');
				hide('rec');
				}
				if (sub == "rec") {
				hide('unt');
				hide('ref');
				hide('akt');
				}
}
function hide_sub(sub) {		
			if (sub == "unt") {
				aktiv = window.setTimeout("hide('unt')",2000);
			}
			if (sub == "ref") {
				aktiv = window.setTimeout("hide('ref')",2000);
			}
			if (sub == "akt") {
				aktiv = window.setTimeout("hide('akt')",2000);
			}
			if (sub == "rec") {
				aktiv = window.setTimeout("hide('rec')",2000);
			}
}
function hide(sub) {		
			document.getElementById(sub).style.visibility = "hidden";
}
