//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("AboutUsid", "About Us", "About Us",  null, null);
	menu.addItem("Servicesid", "Services", "Services",  null, null);
	menu.addItem("PhotoGalleryid", "Photo Gallery", "Photo Gallery",  null, null);
	menu.addItem("Referencesid", "References", "References",  null, null);
	menu.addItem("Contactusid", "Contact Us", "Contact Us",  null, null);	

	menu.addSubItem("Homeid", "Home", "Home",  "http://www.kingofthepainters.com/index.html", "");

	menu.addSubItem("AboutUsid", "Mission Statement", "Mission Statement",  "http://www.kingofthepainters.com/Mission_Statement.htm", "");
	menu.addSubItem("AboutUsid", "Why the King?", "Why the King?",  "http://www.kingofthepainters.com/Whytheking.htm", "");
	menu.addSubItem("AboutUsid", "Who is King of the Painters?", "Who is King of the Painters?",  "http://www.kingofthepainters.com/WhoisKOP.htm", "");
	menu.addSubItem("AboutUsid", "How can you be treated?", "How can you be treated?",  "http://www.kingofthepainters.com/Treated06.htm", "");
	menu.addSubItem("AboutUsid", "Community Service", "Community Service",  "http://www.kingofthepainters.com/communityservice.htm", "");
	menu.addSubItem("AboutUsid", "Blog", "Blog",  "http://www.kingofthepainters.com/blog/", "");

	
	menu.addSubItem("Servicesid", "Painting", "Painting",  "http://www.kingofthepainters.com/Painting.htm", "");
	menu.addSubItem("Servicesid", "Lighting", "Lighting",  "http://www.kingofthepainters.com/Lighting.htm", "");
	menu.addSubItem("Servicesid", "Acoustic Removal", "Acoustic Removal",  "http://www.kingofthepainters.com/AcousticRemoval.htm", "");
	menu.addSubItem("Servicesid", "Faux Finish", "Faux Finish",  "http://www.kingofthepainters.com/Fauxfinishes.htm", "");
	menu.addSubItem("Servicesid", "Crown Mouldings", "Crown Mouldings",  "http://www.kingofthepainters.com/CrownMoldings.htm", "");
	menu.addSubItem("Servicesid", "Stucco Repair", "Stucco Repair",  "http://www.kingofthepainters.com/StuccoRepair.htm", "");
	

	menu.addSubItem("PhotoGalleryid", "Residential Interior", "Gallery Contents",  "http://www.kingofthepainters.com/ResidentialInterior.htm", "");
	menu.addSubItem("PhotoGalleryid", "Residential Exterior", "Gallery Contents",  "http://www.kingofthepainters.com/ResidentialExterior.htm", "");
	menu.addSubItem("PhotoGalleryid", "Commercial Interior", "Gallery Contents",  "http://www.kingofthepainters.com/CommercialInterior.htm", "");
	menu.addSubItem("PhotoGalleryid", "Commercial Exterior", "Gallery Contents",  "http://www.kingofthepainters.com/CommercialExterior.htm", "");
	
	menu.addSubItem("Referencesid", "Residential", "Residential",  "http://www.kingofthepainters.com/Res_References_pg1.htm", "");
	menu.addSubItem("Referencesid", "Commercial", "Commercial",  "http://www.kingofthepainters.com/Com_References_pg1.htm", "");
	menu.addSubItem("Referencesid", "Client Testimonials", "Client Testimonials",  "http://www.kingofthepainters.com/Client_Testimonials_pg1.htm", "");
	
	menu.addSubItem("Contactusid", "Receive a Quote", "Receive a Quote",  "http://www.kingofthepainters.com/estimate.html", "")
	menu.addSubItem("Contactusid", "Application", "Application",  "http://www.kingofthepainters.com/application.html", "")
	menu.addSubItem("Contactusid", "President- Robert Lyon II", "President- Robert Lyon II",  "mailto:rlyon@kingofthepainters.com", "");
	menu.addSubItem("Contactusid", "Vice President- Joey Atkins", "Vice President-Joey Atkins",  "mailto:jatkins@kingofthepainters.com", "");
	
	
	menu.showMenu();
}