//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("taglineid", "Shade Sail Designers & Manufacturers", "Shade Sail Designers & Manufacturers",  null, null);
	menu.addItem("grouphomeid", "Polyweld Group Home", "Polyweld Group Home",  null, null);
	menu.addItem("homeid", "Shade Sail Home", "Shade Sail Home",  null, null);
	menu.addItem("productsid", "Products", "Products",  null, null);
	menu.addItem("galleryid", "Gallery", "Gallery",  null, null);
	menu.addItem("quoteid", "Quote", "Quote",  null, null);
	menu.addItem("mailid", "Mailing List", "Mailing list",  null, null);
	menu.addItem("contactid", "Contact Us", "Contact Us",  null, null);

	menu.addSubItem("homeid", "Back to Home", "Back to Home",  "shadesails.htm", "");
	menu.addSubItem("grouphomeid", "Back to Polyweld Group", "Back to Polyweld Group",  "../polyweldgroup.htm", "");

	menu.addSubItem("productsid", "Shade Sails", "Shade Sails",  "shadeunder.htm", "");

	menu.addSubItem("galleryid", "Case Study 1", "Case Study 1",  "shadeunder.htm", "");
	menu.addSubItem("galleryid", "Case Study 2", "Case Study 2",  "shadeunder.htm", "");
	menu.addSubItem("galleryid", "Case Study 3", "Case Study 3",  "shadeunder.htm", "");


	menu.addSubItem("quoteid", "Request a Quote", "Request a Quote",  "shadeunder.htm", "");
	menu.addSubItem("mailid", "Join our Mailing List", "Join our Mailing List",  "shadeunder.htm", "");
	menu.addSubItem("contactid", "Contact Us", "Contact Us",  "shadecontact.htm", "");
	
	menu.showMenu();
}