//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", "Go to home page", "../index.htm", null); menu.addItem("info", "General Information", "General Information", "../general_info.htm", null); menu.addItem("calendars", "Calendars", "View calendar of events", null, null); menu.addItem("staff", "Faculty & Staff", "View staff information", null, null); menu.addItem("links", "Internet Favorites", "Our favorite web sites for kids", null, null); menu.addItem("gallery", "Photo Gallery", "Haines Photo Gallery", "../gallery.htm", null); menu.addSubItem("calendars", "Events", "Calendar of events", "../calendar.htm", ""); menu.addSubItem("calendars", "Lunch Menu", "Lunch menu calendar", "../lunch_menu.htm", ""); menu.addSubItem("staff", "Faculty & Staff Contact", "Phone mail and e-mail for staff", "../staff.htm", ""); menu.addSubItem("staff", "Principal's Message", "Message from the Principal", "../staff_principal.htm", ""); menu.addSubItem("staff", "First Grade", "Meet the first grade teachers at Haines", "../staff_first.htm", ""); menu.addSubItem("staff", "Second Grade", "Meet the second grade teachers at Haines", "../staff_second.htm", ""); menu.addSubItem("staff", "Third Grade", "Meet the third grade teachers at Haines", "../staff_third.htm", ""); menu.addSubItem("links", "Sites for Everyone", "These sites are great for everyone", "favorites.htm", ""); menu.addSubItem("links", "First Grade", "Sites especially for first graders", "favorites-1.htm", ""); menu.addSubItem("links", "Second Grade", "Sites especially for second graders", "favorites-2.htm", ""); menu.addSubItem("links", "Third Grade", "Sites especially for third graders", "favorites-3.htm", ""); menu.addSubItem("links", "Mrs. Fahey's Links", "Sites found by Mrs. Fahey", "fahey.htm", ""); menu.showMenu(); }