function showSubMenu() {
    // if ($(this).find("ul:first").is(":hidden")) {
    //     $(this).find("ul:first").slideDown("slow");
    //     closeSubmenu= true;
    // }
    $(this).slideDown("slow");
}
function hideSubMenu() {
    // if (closeSubmenu) {
    //     $(this).find("ul:first").slideUp("fast");
    //     closeSubmenu= false;
    // }
    $(this).slideUp();
}

/*function hoverIE() {
    var UL = document.getElementById("manu").firstChild;
    do {
        if (sucheUL(LI.firstChild)) {
            LI.onmouseover=einblenden; LI.onmouseout=ausblenden;
        }
        LI = LI.nextSibling;
    } while(LI);
}

function sucheUL(UL) {
    do {
        if(UL) UL = UL.nextSibling;
        if(UL && UL.nodeName == "UL") return UL;
    } while(UL);
    return false;
}

function einblenden() {
    var UL = sucheUL(this.firstChild);
    UL.style.display = "block"; UL.style.backgroundColor = "silver";
}

function ausblenden() {
    sucheUL(this.firstChild).style.display = "none";
}*/


