//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("news", "News", "",  "news.htm", "_self");
	menu.addItem("bio", "The Band", "",  null, null);
	menu.addItem("gigs", "Gig Guide", "",  "gigs.htm", "_self");
	menu.addItem("set", "Set List", "",  "set.htm", "_self");
	menu.addItem("media", "Media", "",  "media.htm", "_self");
	menu.addItem("gallery", "Gallery", "",  "gallery.htm", "_self");
	menu.addItem("book", "Guestbook", "",  null, null);
	menu.addItem("links", "Links", "", "links.htm", "_self");

	menu.addSubItem("news", "", "",  "", "");

	menu.addSubItem("bio", "Long John", "",  "longjohn.htm", "_self");
        menu.addSubItem("bio", "Phil", "",  "phil.htm", "_self");
        menu.addSubItem("bio", "John", "",  "graham.htm", "_self");
	menu.addSubItem("bio", "Phil M.", "",  "philm.htm", "_self");
        menu.addSubItem("bio", "Terry", "",  "terry.htm", "_self");
	menu.addSubItem("bio", "Contacts", "",  "contacts.htm", "_self");
        
	menu.addSubItem("gigs", "", "",  "", "");

	menu.addSubItem("set", "", "",  "", "");

	menu.addSubItem("media", "", "",  "", "");

	menu.addSubItem("gallery", "", "",  "", "");

	menu.addSubItem("book", "Current", "", "http://users.smartgb.com/g/g.php?a=s&i=g12-01788-a5", "_self");
	menu.addSubItem("book", "Archives", "", "guestbookarchive.htm", "_self");

	menu.addSubItem("links", "", "", "", "");

	menu.showMenu();
}
