//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", "Home Page",  "default.htm", null);
	menu.addItem("galleries", "Galleries", "Galleries",  null, null);
	menu.addItem("theartist", "The Artist", "The Artist",  null, null);
	menu.addItem("commissions", "Commissions", "Commissions",  "commissions.htm",  null, null);
	menu.addItem("email", "Email", "Email",  "mailto:carole@lcharris.com?subject=caroleaharris.com inquiry", null);
	menu.addItem("links", "Links", "Links",  "links.htm", null);

	//menu.addSubItem("webmasterid", "Foo page", "foooos",  "foo.htm", "");
	//menu.addSubItem("webmasterid", "JavaScript Kit", "JavaScript Kit",  "http://www.javascriptkit.com/", "");
	//menu.addSubItem("webmasterid", "Web Review", "Web Review",  "http://www.webreview.com/", "");
	//menu.addSubItem("webmasterid", "Freewarejava.com", "Freewarejava.com",  "http://www.freewarejava.com/", "_blank");
	//menu.addSubItem("webmasterid", "Web Monkey", "Web Monkey",  "http://www.webmonkey.com/", "_blank");

	menu.addSubItem("galleries", "Gallery", "Gallery",  "gallery_ms1.htm", "");
	menu.addSubItem("galleries", "Equine Paintings", "Equine Paintings",  "gallery_eq1.htm", "");
	menu.addSubItem("galleries", "Equine Watercolors & Sketches", "Equine Watercolors & Sketches",  "gallery_eq2.htm", "");
	
	menu.addSubItem("theartist", "Bio/Statement", "Bio/Statement",  "artbiostatemnt.htm", "");
	menu.addSubItem("theartist", "Exhibitions", "Exhibitions",  "artistexhibit.htm", "");
	menu.addSubItem("theartist", "Resume", "Resume",  "artist/08ResumeWeb.pdf", "_blank");

	menu.showMenu();
}