//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", "Home",  null, null);
	menu.addItem("webmasterid", "Architecture and Earth", "Architecture and Earth",  null, null);
	menu.addItem("newsid", "Benefits", "Benefits",  null, null);
	menu.addItem("freedownloadid", "Our Homes", "Our Homes",  null, null);
	menu.addItem("searchengineid", "Services", "Services",  null, null);
	menu.addItem("miscid", "Projects", "Projects",  null, null);
	menu.addItem("Proid", "FAQ", "FAQ",  null, null);
	menu.addItem("teamid", "The Team", "The Team",  null, null);
	menu.addItem("faqid", "Contact", "Contact",  null, null);

	menu.addSubItem("homeid", "Home", "Home",  "http://www.earthhomes.com/index.htm", "");

	menu.addSubItem("webmasterid", "> Overview", "Overview",  "http://www.earthhomes.com/architecture_earth.htm", "");
	menu.addSubItem("webmasterid", "> History", "History",  "http://www.earthhomes.com/architecture_earth_history.htm", "");
	menu.addSubItem("webmasterid", "> Design", "Design",  "http://www.earthhomes.com/architecture_earth_design.htm", "");
	menu.addSubItem("webmasterid", "> Construction", "Construction",  "http://www.earthhomes.com/architecture_earth_constructionprocess.htm", "_blank");


	menu.addSubItem("newsid", "> Overview", "Overview",  "http://www.earthhomes.com/benefits.htm", "");
	menu.addSubItem("newsid", "> Health", "Health",  "http://www.earthhomes.com/benefits_health.htm", "");
	menu.addSubItem("newsid", "> Comfort", "Comfort",  "http://www.earthhomes.com/benefits_comfort.htm", "");
	menu.addSubItem("newsid", "> Security", "Security",  "http://www.earthhomes.com/benefits_security.htm", "");
	menu.addSubItem("newsid", "> Value", "Value",  "http://www.earthhomes.com/benefits_value.htm", "");
	menu.addSubItem("newsid", "> Environment", "Environment",  "http://www.earthhomes.com/benefits_environment.htm", "");

	menu.addSubItem("freedownloadid", "> Our Homes", "Our Homes",  "http://www.earthhomes.com/ourhomes.htm", "");

	menu.addSubItem("searchengineid", "> Overview", "Overview",  "http://www.earthhomes.com/services1.htm", "");
	menu.addSubItem("searchengineid", "> Consultation", "Consultation",  "http://www.earthhomes.com/services1.htm", "");
	menu.addSubItem("searchengineid", "> Planning", "Planning",  "http://www.earthhomes.com/services1.htm", "");
	menu.addSubItem("searchengineid", "> Design", "Design",  "http://www.earthhomes.com/services1.htm", "");
	menu.addSubItem("searchengineid", "> Soil Testing", "Soil Testing",  "http://www.earthhomes.com/services1.htm", "");
	menu.addSubItem("searchengineid", "> Wall Construction", "Wall Construction",  "http://www.earthhomes.com/services1.htm", "");
	menu.addSubItem("searchengineid", "> Complete Homes", "Complete Homes",  "http://www.earthhomes.com/services1.htm", "");
	menu.addSubItem("searchengineid", "> Feasibility Assessment", "Feasibility Assessment",  "http://www.earthhomes.com/services1.htm", "");

	menu.addSubItem("miscid", "> Projects", "Projects",  "http://www.earthhomes.com/projects.htm", "");

	menu.addSubItem("Proid", "> FAQ", "FAQ",  
"http://www.earthhomes.com/faq1.htm", "");

	menu.addSubItem("teamid", "> Team", "Team",  
"http://www.earthhomes.com/team.htm", "");

	menu.addSubItem("faqid", "> Contact", "Contact",  
"http://www.earthhomes.com/contact1.htm", "");


	menu.showMenu();
}