//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("homeid", "Main&nbsp;&nbsp;<font FACE=\"Symbol\">¯</font>", "Click Link Below",  null, null);
	menu.addItem("picturesid", "Pictures&nbsp;&nbsp; <font FACE=\"Symbol\">¯</font>", "Click Link Below",  null, null);
	menu.addItem("journalsid", "Medical Info&nbsp;&nbsp; <font FACE=\"Symbol\">¯</font>", "Click Link Below",  null, null);
	menu.addItem("communicateid", "Communicate&nbsp;&nbsp; <font FACE=\"Symbol\">¯</font>", "Click Link Below",  null, null);
	menu.addItem("storeid", "Online Store&nbsp;&nbsp; <font FACE=\"Symbol\">¯</font>", "Click Link Below",  null, null);
	menu.addItem("linksid", "Links&nbsp;&nbsp; <font FACE=\"Symbol\">¯</font>", "Click Link Below",  null, null);

	menu.addSubItem("homeid", "Home Page", "Main Page and Video",  "http://www.moyamoya.com/", "_top");
	menu.addSubItem("homeid", "My Story", "DJs Story",  "http://www.moyamoya.com/history.html", "_top");

	menu.addSubItem("picturesid", "Moyamoya Family", "Pictures of our Moyamoya Family",  "http://www.moyamoya.com/mmfamily/index1.htm", "_top");
	menu.addSubItem("picturesid", "Las Vegas 2008", "Fourth MM.com Reunion",  "http://www.moyamoya.com/lasvegas2008/index1.htm", "_top");
	menu.addSubItem("picturesid", "San Antonio 2007", "Third MM.com Reunion",  "http://www.moyamoya.com/sanantonio/index1.htm", "_top");
	menu.addSubItem("picturesid", "Orlando 2006", "Second MM.com Reunion",  "http://www.moyamoya.com/orlando2006/index1.htm", "_top");
	menu.addSubItem("picturesid", "Las Vegas 2005", "First MM.com Reunion",  "http://www.moyamoya.com/vegas2005/index1.htm", "_top");
	menu.addSubItem("picturesid", "DJ's SPECT Scans", "My Oxygen Content Scans",  "http://www.moyamoya.com/pictures.html", "_top");
	menu.addSubItem("picturesid", "DJ's 1st Surgery", "August 2001 (right side)",  "http://www.moyamoya.com/pictures2.html", "_top");
	menu.addSubItem("picturesid", "DJ's 2nd Surgery", "January 2003 (left side)",  "http://www.moyamoya.com/pictures3.html", "_top");

	menu.addSubItem("journalsid", "What is Moyamoya?", "What exactly is Moyamoya Disease?",  "http://www.moyamoya.com/whatis.html", "_top");
	menu.addSubItem("journalsid", "STA-MCA Bypass", "Superficial Temporal Artery to Middle Cerebral Artery Surgery",  "http://www.moyamoya.com/journals/sta-mca.html", "_top");
	menu.addSubItem("journalsid", "Moyamoya Surgery", "Surgical Treatment of Moyamoya Disease",  "http://www.moyamoya.com/journals/moyamoya.html", "_top");

	menu.addSubItem("communicateid", "Message Board", "Visit the NEW Message Board!",  "http://www.moyamoya.com/cgi-bin/yabb2/YaBB.pl", "_top");
	menu.addSubItem("communicateid", "Guest Book", "Post Your Story!",  "http://www.moyamoya.com/guestbook/guestbook.html", "_top");
	menu.addSubItem("communicateid", "Archived Messages", "View Old Messages",  "http://www.moyamoya.com/archives.html", "_top");
	menu.addSubItem("communicateid", "NEW! Live Chat!", "Chat Live with others!",  "http://www.moyamoya.com/cgi-bin/gtchat/chat.pl", "_top");

	menu.addSubItem("storeid", "Shop MM.com", "Moyamoya Stuff",  "http://www.moyamoya.com/khxc/index.php", "_top");

	menu.addSubItem("linksid", "Moyamoya Links", "Moyamoya Links",  "http://www.moyamoya.com/links.html", "_top");
	menu.addSubItem("linksid", "Netiquette", "Message Board Etiquette",  "http://www.moyamoya.com/netiquette.html", "_blank");

	menu.showMenu();
}

