//Top Nav bar script v2- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

    menu = new Menu();
    menu.addItem("homeid", "Home", "Home",  "http://www.medizinerorchester.org/", null);
    menu.addItem("orchestraid", "Orchester", "Orchester",  null, null);
    menu.addItem("actualid", "Aktuell", "Aktuell",  null, null);
    menu.addItem("kontaktid", "Kontakt", "Kontakt",  null, null);
    menu.addItem("joinid", "Mitspielen!", "Mitspielen!",  "mitspielen.htm", null);
    menu.addItem("engageid", "Engagements", "Engagements",  "engagement.htm", null);
    menu.addItem("linkid", "Links", "Links",  "links.htm", null); // links.htm = direktlink 
    menu.addItem("memberid", "Members", "Members", "/members/login.htm", null); // null null fuer untermenu

    
// hier werden die unteritems bestimmt.    

    menu.addSubItem("orchestraid", "Portr&auml;t", "Portr&auml;t",  "entstehung.htm");
    menu.addSubItem("orchestraid", "Dirigent", "Dirigent",  "dirigent.htm");
    menu.addSubItem("orchestraid", "Probenplan", "Probenplan",  "probenplan.htm");
    menu.addSubItem("linkid", "Links", "Links",  "links.htm");

    menu.addSubItem("actualid", "Programm", "Programm",  "programm.htm");
    menu.addSubItem("actualid", "Solisten", "Solisten",  "solisten.htm");

    menu.addSubItem("kontaktid", "Adressen", "Adressen",  "address.htm");
    menu.addSubItem("kontaktid", "Passivmitglieder", "Passivmitglieder",  "passive.htm");
    menu.addSubItem("kontaktid", "Feedback", "Feedback",  "anregungen.htm");
    menu.addSubItem("kontaktid", "Webmaster", "Webmaster",  "webmaster.htm");

    menu.showMenu();
}
