//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("homeid", "Donate", "Donate",  "http://www.moyamoya.com/cgi-bin/yabb2/YaBB.pl?action=donate", "_top");


	menu.addSubItem("picturesid", "Moyamoya Family", "Pictures of our Moyamoya Family",  "http://www.facebook.com/album.php?aid=5995&l=5fad9439b9&id=112207422156888", "_blank");
	menu.addSubItem("picturesid", "Philadelphia 2011", "Fifth MM.com Reunion",  "https://www.facebook.com/media/set/?set=a.206307872746842.55740.112207422156888", "_blank");
	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", "Doctor Videos!", "Doctor Presentations from Philadelphia Gathering",  "http://www.moyamoya.com/philly2011.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", "Live Chat", "Chat Live with others!",  "http://www.moyamoya.com/cgi-bin/gtchat/chat.pl", "_top");
	menu.addSubItem("communicateid", "Facebook Page", "Check out Facebook!",  "https://www.facebook.com/moyamoyafriends", "_blank");

	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();
}


