//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("mainpageid", "Gallery Entrance", "Go the Main Gallery Page",  "http://www.zef.com/Gallery/default.asp", null);
	menu.addItem("shopid", "Gallery Directory", "Go to the Comeplete Gallery Shopping Directory Listing", "http://www.zef.com/Gallery/shopdisplaycategories.asp", null);
	menu.addItem("searchid", "Search", "Search for products on our online catalogue",  "http://www.zef.com/Gallery/default.asp", null);
	menu.addItem("faqid", "Support & FAQ's", "Help & Frequently Asked Questions",  "http://www.zef.com/Gallery/help.asp", null);
	menu.addItem("contactusid", "About Us", "Company Information",  "http://www.zef.com/Gallery/aboutus.asp", null);
	menu.addItem("feedbackid", "Feedback", "Complaints, Comments, or Compliments Are Always Welcome!", "http://www.zef.com/Gallery/shopcustcontact.asp", null);	

	menu.addItem("linksid", "Links of Interest", "Links of Interest to Partners and other Sites",  "http://www.zef.com/links.htm", null);
	
menu.showMenu();
}