//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("home", "Home", "",  "index.html", "");
	menu.addItem("products", "Antiques & Collectibles", "",  null, null);
	menu.addItem("belle_epoque", "Inside La Belle Epoque", "",  null, null);
	menu.addItem("services", "Services", "",  null, null);
	menu.addItem("about_us", "Contact & Order Information", "",  null, null);

	menu.addSubItem("home", "Dynamic Drive", "Dynamic Drive",  "http://www.dynamicdrive.com/", "");
	menu.addSubItem("home", "JavaScript Kit", "JavaScript Kit",  "http://www.javascriptkit.com/", "");
	menu.addSubItem("home", "Web Review", "Web Review",  "http://www.webreview.com/", "");
	menu.addSubItem("home", "Freewarejava.com", "Freewarejava.com",  "http://www.freewarejava.com/", "_blank");
	menu.addSubItem("home", "Web Monkey", "Web Monkey",  "http://www.webmonkey.com/", "_blank");

	menu.addSubItem("products", "Binoculars & Opera Glasses", "",  "binoculars-opera-glasses.htm", "");
	menu.addSubItem("products", "Antique Luggage, Doctor's Bags, Travel bags...", "",  "antique-leather-luggage.htm", "");
	menu.addSubItem("products", "Collectible Firearms", "",  "collectible-firearms.htm", "");
	menu.addSubItem("products", "Other Antiques", "",  "french-antiques.htm", "");

	menu.addSubItem("belle_epoque", "What is La Belle Epoque?", "",  "what-is-la-belle-epoque.htm", "");
	menu.addSubItem("belle_epoque", "Pictures of La Belle Epoque", "",  "pictures-of-la-belle-epoque.htm", "");
	menu.addSubItem("belle_epoque", "Paris when La Belle Epoque", "",  "paris-when-la-belle-epoque.htm", "");
	menu.addSubItem("belle_epoque", "Quiz", "",  "quiz.htm", "");


	menu.addSubItem("services", "News", "",  "news.htm", "");
	menu.addSubItem("services", "Appraisals", "",  "appraisals.htm", "");
	menu.addSubItem("services", "Links", "",  "links.htm", "");
	menu.addSubItem("services", "Add your URL", "", "add-your-url.htm", "");
	menu.addSubItem("services", "Search", "", "http://la-belle-epoque.net.master.com/texis/master/search/", "");


	menu.addSubItem("about_us", "Who we are", "",  "who-we-are.htm", "");
	menu.addSubItem("about_us", "Contact us", "",  "contact-us.htm", "");
	menu.addSubItem("about_us", "How to Order", "",  "how-to-order.htm", "");

	menu.showMenu();
}
