//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("webmasterid", "Home", "", null,"main.htm");

	menu.addItem("blogid", "News", "", null,"http://thedarksidegallery.blogspot.com/");

	menu.addItem("newsid", "About the Artist", "", null,"biog.htm");

	menu.addItem("freedownloadid", "Artistic Methods", "", null,"how.htm");

	menu.addItem("searchengineid", "Gallery", "", null, "gallery.htm");

	menu.addItem("miscid", "Buy", "", null,"shop.htm");










	menu.addSubItem("webmasterid", "Back Home", "", "main.htm", "");

	menu.addSubItem("blogid", "Events and Exhibitions", "", "http://thedarksidegallery.blogspot.com/", "");

	menu.addSubItem("newsid", "Information and Biography", "", "biog.htm", "");
	

	menu.addSubItem("freedownloadid", "Inspirations, Methods and Materials", "", "how.htm", "");
	

	menu.addSubItem("searchengineid", "Main Gallery", "", "gallery.htm", "");

	menu.addSubItem("searchengineid", "&#160; &#160; The Good", "", "TheGood.htm", "");

	menu.addSubItem("searchengineid", "&#160; &#160;  The Bad", "", "TheBad.htm", "");

	menu.addSubItem("searchengineid", "&#160; &#160;  The Ugly", "", "TheUgly.htm", "");

	menu.addSubItem("searchengineid", "&#160; &#160;  The Nude", "", "TheNude.htm", "");

	

	menu.addSubItem("miscid", "Buy artwork from The Darkside Gallery", "", "shop.htm", "");




	menu.showMenu();
}