//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",  null, null);
	menu.addItem("aboutme", "About Me", "About Me",  null, null);
	menu.addItem("garden", "My Garden", "My Garden",  null, null);
	menu.addItem("photo", "Photography", "Photography",  null, null);
	menu.addItem("knit", "Knitted Lace", "Knitted Lace",  null, null);
        menu.addItem("hobbies", "Other Hobbies", "Other Hobbies",  null, null);
        menu.addItem("misc", "Miscellaneous", "Miscellaneous",  null, null);
        menu.addItem("contact", "Mail Me", "Mail Me",  null, null);

	menu.addSubItem("home", "Home", "Home", "index.html", "");
        menu.addSubItem("home", "My Danish Page", "My Danish Page",  "http://www.soejberg.com/", "");	
	

	menu.addSubItem("aboutme", "About Me", "About Me",  "aboutme.html", "");
	
        menu.addSubItem("garden", "My Garden", "My Garden",  "garden.html", "");
	menu.addSubItem("garden", "Flowers and Plants", "Flowers and Plants",  "flowers.html", "");
	menu.addSubItem("garden", "What is This?", "What is This?",  "what.html", "");
	menu.addSubItem("garden", "Tips", "Tips",  "tips.html", "");

        menu.addSubItem("photo", "Photography", "Photography",  "photo.html", "");
	menu.addSubItem("photo", "Karup Aadal", "Karup Aadal",  "karup.html", "");
	menu.addSubItem("photo", "Slaaen Lake", "Slaaen Lake",  "slaaensea.html", "");
	
	menu.addSubItem("knit", "Knitted Lace", "Knitted Lace",  "knit.html", "");

	menu.addSubItem("hobbies", "Pottery", "Pottery",  "pottery.html", "");
	menu.addSubItem("hobbies", "Batik", "Batik",  "batik.html", "");
        menu.addSubItem("hobbies", "Beads", "Beads",  "beads.html", "");
        menu.addSubItem("hobbies", "Decorations", "Decorations",  "deco.html", "");


        menu.addSubItem("misc", "Flying", "Flying",  "flyv.html", "");
        menu.addSubItem("misc", "Miscellaneous", "Miscellaneous",  "smaating.html", "");
        menu.addSubItem("misc", "Animals", "Animals",  "animals.html", "");
				menu.addSubItem("misc", "Ireland", "Ireland",  "ireland.html", "");


        menu.addSubItem("contact", "Mail me", "Mail Me",  "contact.html", "");

	menu.showMenu();
}