//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", "Home Page", "Home Page",  null, null);
	menu.addItem("genealogyid", "Genealogy Pages", "Genealogy Pages",  null, null);
	menu.addItem("freedownloadid", "Machine Embroidery", "Machine Embroidery",  null, null);
	menu.addItem("searchengineid", "Search Engines", "Search Engines",  null, null);
	menu.addItem("webmasterid", "Web Master Helpers", "Web Master Helpers", null,null);

	menu.addSubItem("homeid", "Home Page", "Home Page",  "http://www.omega84.com/", "");
                  menu.addSubItem("homeid", "Contact Me", "Contact Me",  "mailto:admin@omega84.com", "");
                  	
                  menu.addSubItem("genealogyid", "Genealogy Start Here", "Genealogy Start Here",  "http://www.omega84.com/genealogystart.html", "");
                  menu.addSubItem("genealogyid", "Genealogy Docs", "Genealogy Docs",  "http://www.omega84.com/genealogydocs.html", "");
	menu.addSubItem("genealogyid", "Lester Photos", "Lester Photos",  "http://www.omega84.com/lesterphotos.html", "");
	menu.addSubItem("genealogyid", "Lester Miscellaneous", "Lester Miscellaneous",  "http://www.omega84.com/lestermiscellaneous.html", "");
	menu.addSubItem("genealogyid", "Nelson Photos", "Nelson Photos",  "http://www.omega84.com/nelsonphotos.htm", "");
	menu.addSubItem("genealogyid", "Nelson Misc.", "Nelson Misc.",  "http://www.omega84.com/nelsonmisc.htm", "");
	menu.addSubItem("genealogyid", "WWI Tribute", "WWI Tribute",  "http://www.omega84.com/hclesterww1tribute.htm", "");
                  
	menu.addSubItem("freedownloadid", "Projects Page", "Projects Page",  "http://www.omega84.com/projects.html", "");
	menu.addSubItem("freedownloadid", "Free Design Downloads", "Free Design Downloads",  "http://www.omega84.com/freedesigns.html", "");
                  
	menu.addSubItem("searchengineid", "Google", "Google",  "http://www.google.com/", "_blank");
	menu.addSubItem("searchengineid", "Yahoo", "Yahoo",  "http://www.yahoo.com/", "_blank");
	menu.addSubItem("searchengineid", "Rootsweb", "Rootsweb", "http://www.rootsweb.com", "_blank");
	menu.addSubItem("searchengineid", "Ancestry.com", "Ancestry.com",  "http://www.ancestry.com", "_blank");

                  menu.addSubItem("webmasterid", "JavaScript Kit", "JavaScript Kit",  "http://www.javascriptkit.com/", "_blank");
	menu.addSubItem("webmasterid", "Simply Magic Web Effects", "Simply Magic Web Effects",  "http://www.kallbackafrica.com/simply/index1.htm", "_blank");
	menu.addSubItem("webmasterid", "Web Builders Toolkit", "Web Builders Toolkit",  "http://www.crispen.org/web_building/", "_blank");
	menu.addSubItem("webmasterid", "Web Monkey", "Web Monkey",  "http://www.webmonkey.com/", "_blank");

	menu.showMenu();
}