function drueber(typ, nummer, bild)
    {
    var pfad = "../";
    if(typ == "index") { pfad = "./"; }
    else if(typ == "thema") { pfad = "../../../"; }
    window.document.images[nummer].src = pfad + "pics/menue/over/" + bild + ".png";
    return true;
    }

function runter(typ, nummer, bild)
    {
    var pfad = "../";
    if(typ == "index") { pfad = "./"; }
    else if(typ == "thema") { pfad = "../../../"; }
    window.document.images[nummer].src = pfad + "pics/menue/out/" + bild + ".png";
    }
