//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("MainHeading", "Home", "Home",  null, null);
	menu.addItem("Heading2", "Services", "Services",  null, null);
	menu.addItem("Heading3", "AboutUs", "AboutUs",  null, null);
	menu.addItem("Heading4", "Contact Us", "Contact Us",  null, null);
	menu.addItem("Heading5", "Free Info", "Free Info",  null, null);
	menu.addItem("Heading6", "Miscellaneous", "Miscellaneous",  null, null);
	


	menu.addSubItem("MainHeading", "Home", "Home",  "http://www.hoacommunitysolutions.com/index.html", "");

        menu.addSubItem("Heading2", "Services Overview", "Services Overview",  "http://www.hoacommunitysolutions.com/ServicesOverview.html", "");
	menu.addSubItem("Heading2", "Billing & Accounting", "Billing & Accounting",  "http://www.hoacommunitysolutions.com/BillingAndAccountingServices.html", "");
	menu.addSubItem("Heading2", "Communication Tools", "Communication Tools",  "http://www.hoacommunitysolutions.com/CommunicationTools.html", "");
	menu.addSubItem("Heading2", "Community Event Planning", "Community Event Planning",  "http://www.hoacommunitysolutions.com/CommunityEventPlanning.html", "");
	menu.addSubItem("Heading2", "Consulting", "Consulting",  "http://www.hoacommunitysolutions.com/Consulting.html", "");
	menu.addSubItem("Heading2", "Enforcement of CC&Rs", "Enforcement of CC&Rs",  "http://www.hoacommunitysolutions.com/EnforcementOfCC&Rs.html", "");
	menu.addSubItem("Heading2", "HOA Board Training", "HOA Board Training",  "http://www.hoacommunitysolutions.com/HOABoardMemberTraining.html", "");
	menu.addSubItem("Heading2", "Meeting & Records Management", "Meeting & Records Management",  "http://www.hoacommunitysolutions.com/MeetingAndRecordsManagement.html", "");
	menu.addSubItem("Heading2", "Vendor Management & Referral", "Vendor Management & Referral",  "http://www.hoacommunitysolutions.com/VendorManagementAndReferral.html", "");
	

	menu.addSubItem("Heading3", "About Us", "About Us",  "http://www.hoacommunitysolutions.com/AboutUs.html", "");
	menu.addSubItem("Heading3", "Affiliations", "Affiliations",  "http://www.hoacommunitysolutions.com/Affiliations.html", "");
	menu.addSubItem("Heading3", "What Our Customers Have To Say", "What Our Customers Have To Say",  "http://www.hoacommunitysolutions.com/Testimonials.html", "");

        menu.addSubItem("Heading4", "Contact Us", "Contact Us",  "http://www.hoacommunitysolutions.com/Contact.html", "");

	menu.addSubItem("Heading5", "HOA Blog", "HOA Blog",  "http://www.hoacommunitysolutions.com/BLOG.html", "");
	menu.addSubItem("Heading5", "Newsletter Articles", "Newsletter Articles",  "http://www.hoacommunitysolutions.com/NewsletterArticles.html", "");
	

	menu.addSubItem("Heading6", "Links", "Links",  "http://www.hoacommunitysolutions.com/Links.html", "");

	








	menu.showMenu();
}

