//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",  "index.htm");
	menu.addItem("organisationsid", "Organisations", "Organisations",  null, null);
	menu.addItem("aikidoid", "Aikido", "Aikido",  null, null);
	menu.addItem("baaid", "BAA", "BAA",  null, null);
	menu.addItem("newsid", "News", "News",  null, null);
	menu.addItem("forumid", "Forum", "Forum",  "forum.htm");

	menu.addSubItem("organisationsid", "AAA", "AAA",  "aaa.htm");
	menu.addSubItem("organisationsid", "AAI", "AAI",  "aai.htm");
	
	menu.addSubItem("aikidoid", "History", "History",  "history.htm");
	menu.addSubItem("aikidoid", "Toyoda", "Toyoda",  "toyoda.htm");
	menu.addSubItem("aikidoid", "Links", "Links",  "links.htm");
	
	menu.addSubItem("baaid", "History", "History",  "baa.htm");
	menu.addSubItem("baaid", "E. Germanov", "E. Germanov",  "Edi.htm");
	menu.addSubItem("baaid", "Dojo", "Dojo",  "dojo.htm");
	menu.addSubItem("baaid", "Ranks", "Ranks",  "ranks.htm");
	menu.addSubItem("baaid", "Seminars", "Seminars",  "seminars.htm");
	menu.addSubItem("baaid", "Sho-Do", "Sho-Do",  "shodo.htm");
	menu.addSubItem("baaid", "Photos", "Photos",  "photos.htm");
	menu.addSubItem("baaid", "Our Friends", "Our Friends",  "friends.htm");
	menu.addSubItem("baaid", "Contacts", "Contacts",  "contacts.htm");
		
	menu.addSubItem("newsid", "Recent News", "Recent News",  "index_eng.htm");
	menu.addSubItem("newsid", "WAP", "WAP",  "WAP.htm");
	menu.addSubItem("newsid", "Archive", "Archive", "archive.htm");
	

	menu.showMenu();
}