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

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

        menu = new Menu();
        menu.addItem("Home", "Home", "Home",  "./index.php", null);
        menu.addItem("About", "About the Centers", "About",  null, null);
        menu.addItem("Initiatives", "Initiatives", "Initiatives",  "./initiatives.php", null);
        menu.addItem("Projects", "Projects", "Projects",  null, null);
        menu.addItem("Model Laws", "Model Laws", "Model Laws",  "./ModelLaws/index.php", null);
        menu.addItem("Courses", "Courses", "Courses",  null, null);
        menu.addItem("Links", "Links", "Links",  "./links.php", null);


        menu.addSubItem("About", "Mission Statement", "Mission Statement",  "./mission.php", "");
        menu.addSubItem("About", "Our People", "Our People",  "./people.php", "");
        menu.addSubItem("About", "Host Institutions", "Host Institutions",  "./hostinstitutions.php", "");
        menu.addSubItem("About", "Search Our Site", "Search",  "./search.php", "");

        menu.addSubItem("Projects", "Core Projects", "Core Projects",  "./Projects/CoreProjects.php", "");
        menu.addSubItem("Projects", "Affiliated Projects", "Affiliated Projects",  "./Projects/AffiliatedProjects.php", "");
        menu.addSubItem("Projects", "PHL Case Studies", "State PHL Case Studies",  "./Projects/CaseStudies.php", "");
        menu.addSubItem("Projects", "Emergency Preparedness", "Emergency Preparedness",  "./Projects/EmergencyPrep.php", "");

        menu.addSubItem("Courses", "Public Health Law", "Public Health Law",  "./Courses/PublicHealthLaw.php", "");
        menu.addSubItem("Courses", "Other", "Other",  "./Courses/Other.php", "");


        menu.showMenu();
}
