function wechselAuf(Element, Ebene) {
    if(String(Element).substring(0,1)=="a") {
        Element=document.getElementById(Element);
        if(Ebene==1) {
            Element.style.backgroundColor="#d8ff9b";
            Element.firstChild.style.color="#000000";
            Element.firstChild.style.fontFamily="arial";
            Element.firstChild.style.fontSize="12pt";
            Element.firstChild.style.fontWeight="800";
            Element.firstChild.style.fontStyle="normal";
            Element.style.width="220px";
            Element.style.height="20px";
            Element.style.marginLeft="0px";
            Element.style.padding="3px";
            Element.style.borderStyle="none none none solid";
            Element.style.borderColor="#4f8700";
            Element.style.borderWidth="10px";
        }

        if(Ebene==2) {
            Element.style.backgroundColor="#a4dd6c";
            Element.firstChild.style.color="#000000";
            Element.firstChild.style.fontFamily="arial";
            Element.firstChild.style.fontSize="11pt";
            Element.firstChild.style.fontWeight="800";
            Element.firstChild.style.fontStyle="normal";
            Element.style.width="195px";
            Element.style.height="18px";
            Element.style.marginLeft="25px";
            Element.style.padding="3px";
            Element.style.borderStyle="none none none solid";
            Element.style.borderColor="#375e00";
            Element.style.borderWidth="10px";
        }

    }
}

function wechselWeg(Element, Ebene) {
    if(String(Element).substring(0,1)=="a") {
        Element=document.getElementById(Element);
        if(Ebene==1) {
            Element.style.backgroundColor="#d8ff9b";
            Element.firstChild.style.color="#000000";
            Element.firstChild.style.fontFamily="arial";
            Element.firstChild.style.fontSize="12pt";
            Element.firstChild.style.fontWeight="800";
            Element.firstChild.style.fontStyle="normal";
            Element.style.width="220px";
            Element.style.height="20px";
            Element.style.marginLeft="0px";
            Element.style.padding="3px";
            Element.style.borderStyle="none none none solid";
            Element.style.borderColor="#8ac300";
            Element.style.borderWidth="10px";
        }

        if(Ebene==2) {
            Element.style.backgroundColor="#a4dd6c";
            Element.firstChild.style.color="#000000";
            Element.firstChild.style.fontFamily="arial";
            Element.firstChild.style.fontSize="11pt";
            Element.firstChild.style.fontWeight="800";
            Element.firstChild.style.fontStyle="normal";
            Element.style.width="195px";
            Element.style.height="18px";
            Element.style.marginLeft="25px";
            Element.style.padding="3px";
            Element.style.borderStyle="none none none solid";
            Element.style.borderColor="#4f8700";
            Element.style.borderWidth="10px";
        }

    }
}