//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", "Home",  null, null);
                    menu.addItem("statsid", "Stationery", "Stationery",  null, null);
	menu.addItem("bkgrndsid", "Tiles", "Tiles",  null, null);
                    menu.addItem("linksid", "Links", "Links",  null, null);
                    menu.addItem("appletsid","Applets","Applets", null, null);
                    menu.addItem("contactid", "Contact Me", "Contact Me",  null, null);
                    menu.addItem("miscid", "Resources", "Resources",  null, null);
                    menu.addSubItem("webmasterid", "Home", "Home",  "http://www.stationery-boutique.com/", "");
	
                    menu.addSubItem("statsid", "Page 1", "Page 1",  "http://www.stationery-boutique.com/stats1.html", "");
                    menu.addSubItem("statsid", "Page 2", "Page 2",  "http://www.stationery-boutique.com/stats2.html", "");
                    menu.addSubItem("statsid", "Page 3", "Page 3",  "http://www.stationery-boutique.com/stats3.html", "");

	
                    menu.addSubItem("bkgrndsid", "Tiles Page 1", "Tiles Page 1",  "http://www.stationery-boutique.com/tiles1.html", "");
	menu.addSubItem("bkgrndsid", "Tiles Page 2", "Tiles Page 2",  "http://www.stationery-boutique.com/tiles2.html", "");
	menu.addSubItem("bkgrndsid", "Tiles Page 3", "Tiles Page 3",  "http://www.stationery-boutique.com/tiles3.html", "");
	menu.addSubItem("bkgrndsid", "Tiles Page 4", "Tiles Page 4",  "http://www.stationery-boutique.com/tiles4.html", "");
	menu.addSubItem("bkgrndsid", "Tiles Page 5", "Tiles Page 5",  "http://www.stationery-boutique.com/tiles5.html", "");
	menu.addSubItem("bkgrndsid", "Tiles Page 6", "Tiles Page 6",  "http://www.stationery-boutique.com/tiles6.html", "");
	menu.addSubItem("bkgrndsid", "Tiles Page 7", "Tiles Page 7",  "http://www.stationery-boutique.com/tiles7.html", "");
                    menu.addSubItem("linksid", "My Links Page", "My Links Page",  
 "http://www.stationery-boutique.com/links.html", "");
	menu.addSubItem("linksid", "My Logo Page", "My Logo Page",  "http://www.stationery-boutique.com/logo.html", "");

                     menu.addSubItem("appletsid","Lake Applet 1","Lake Applet 1",
"http://www.stationery-boutique.com/lake_applet1.html","");
                     menu.addSubItem("appletsid","Lake Applet 2","Lake Applet 2",
"http://www.stationery-boutique.com/lake_applet2.html","");

                    menu.addSubItem("contactid", "Send me mail", "Send me mail",  "mailto:betty&#64;stationery-boutique.com", "");

	menu.addSubItem("miscid", "Paint Shop Pro", "Paint Shop Pro",  "http://www.corel.com/servlet/Satellite/us/en/Product/1184951547051'target='_blank", "");

	menu.addSubItem("miscid", "Filters", "Filters",  "http://hem.passagen.se/grafoman/plugtool/plugs.html'target='_blank", "");
	menu.addSubItem("miscid", "PSP Users Group", "PSP Users Group",  "http://www.pspug.org/'target='_blank", "");
	menu.addSubItem("miscid", "Suz's Place", "Suz's Place",  "http://suzsplace.com/'target='_blank", "");

	menu.showMenu();
}