
function klappaus () {
	if ($("#themenues").is(':visible')) {
        $("#theheader").show();
        $("#theheaderopen").hide();
        $("#theheaderes").show();
        $("#theheaderopenes").hide();
        $("#themenues").hide();
	} else {
        $("#theheader").hide();
        $("#theheaderopen").show();
        $("#theheaderes").hide();
        $("#theheaderopenes").show();
		$("#themenues").show();
	}
}

