var normal_table='';
function normal_menu_table(id) {	
var i=0;

if(normal_table!=id) {	
if(normal_table) {	
normal_menu_table(normal_table);
}
} else {	
normal_table='';
}
while(i<=normal_table) {
if (document.getElementById(id).style.display == 'none') {	
document.getElementById(id).style.display = 'inline';
normal_table=id;
} else {	
document.getElementById(id).style.display = 'none';
}
i++;
}
}
	
	
function aendern(welchertag, class1, class2, linkgeklickt, linknormal, thus) {
	var rows = document.getElementsByTagName(welchertag);
	for(var i=0; i<rows.length; i++) {
		if (rows[i].className==class1) {
			rows[i].className=class2;
			thus.innerHTML = linkgeklickt;
		} else {
			if (rows[i].className==class2) {
				rows[i].className=class1;	
				thus.innerHTML = linknormal;
			}
		}
	}
}

function aendern2(welchertag_2, class1_2, class2_2, linkgeklickt_2, linknormal_2, thus_2) {
	var rows = document.getElementsByTagName(welchertag_2);
	for(var i=0; i<rows.length; i++) {
		if (rows[i].className==class1_2) {
			rows[i].className=class2_2;
			thus_2.innerHTML = linkgeklickt_2;
		} else {
			if (rows[i].className==class2_2) {
				rows[i].className=class1_2;	
				thus_2.innerHTML = linknormal_2;
			}
		}
	}
}


	




