function show(id) {
    navRoot = document.getElementById("tab_content");
	for (i=0; i < navRoot.childNodes.length; i++) {
		node = navRoot.childNodes[i];
		if (node.nodeName=="TABLE") {
			node.className = 'hidden';
		}
	}
  document.getElementById(id).className = 'show';  
}

function tab_active(id) {
  	navRoot = document.getElementById("tab_nav");
	for (i=0; i < navRoot.childNodes.length; i++) {
		node = navRoot.childNodes[i];
		if (node.nodeName=="LI") {
			node.className = '';
		}
	}
	document.getElementById(id).className = 'active';
}

function show_neu(id) {
	root_tabs = window.document.getElementById(id);
	if(root_tabs.className == "klapp_tab_con show"){
		root_tabs.className = "klapp_tab_con hidden";
	}else{
		root_tabs.className = "klapp_tab_con show";
	
	}
}
