//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", "index.php", null);
	menu.addItem("productsid", "Products", "Products",  null, null);
	menu.addItem("aboutusid", "About Us", "About Us",  "aboutus.php", null);
	menu.addItem("policyid", "Policies", "Policies", "policies.php", null);
	menu.addItem("fragranceid", "Fragrances", "Fragrances", "fragrances.php", null);
	menu.addItem("testimonialsid", "Testimonials", "Testimonials", "testimonials.php", null);
	menu.addItem("linksid", "Links", "Links", "links.php", null);
	
	menu.addSubItem("productsid", "Body Treats", "Body Treats",  "body_treats.php", "");
	menu.addSubItem("productsid", "Face Treats", "Face Treats", "face_treats.php", "");
	menu.addSubItem("productsid", "For Men & Kids", "For Men & Kids",  "men_kids.php", "");
	menu.addSubItem("productsid", "Gift Certificates", "Gift Certificates",  "gift_certificates.php", "");
	menu.addSubItem("productsid", "Hand & Feet Treats", "Hand & Feet Treats",  "hand_feet_treats.php", "");
	menu.addSubItem("productsid", "Mineral Makeup", "Mineral Makeup",  "mineral_makeup.php", "");
	menu.addSubItem("productsid", "Mineral Makeup Colour Chart", "Mineral Makeup Colour Chart",  "colour_chart.php", "");
	menu.addSubItem("productsid", "Mineral Makeup Brushes", "Mineral Makeup Brushes",  "mineral_makeup_brushes.php", "");

	menu.showMenu();
}