function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
        menu.addItem("Menuid", "Seamaster Menu", "Seamaster Menu",  null, null);
	menu.addItem("reelsid", "Seamaster Fly Reels", "Seamaster Fly Reels",  null, null);
	menu.addItem("fishingid", "Fly Fishing...", "Fly Fishing...",  null, null);
	menu.addItem("galleryid", "Gallery", "Gallery",  null, null);
	menu.addItem("contactid", "Contact", "Contact",  null, null);
	menu.addItem("shopid", "Shop Seamaster", "Shop Seamaster",  null, null);
menu.addSubItem(&quot;reelsid&quot;, "Mark II and Mark III", "Mark II and Mark III",  "http://www.seamaster.com/mark23.htm");
	menu.addSubItem("reelsid", "Marlin I and Marlin II", "Marlin I and Marlin II",  "http://www.seamaster.com/marlin12.htm");
	menu.addSubItem("reelsid", "Special Limited Edition", "Special Limited Edition",  "http://www.seamaster.com/special.htm");
	menu.addSubItem("reelsid", "Used and Collectible", "Used and Collectible",  "http://www.seamaster.com/used.htm");
	menu.addSubItem("reelsid", "Restoration and Repair", "Restoration and Repair",  "http://www.seamaster.com/serv01.htm");
	
	menu.addSubItem("fishingid", "Accessories", "Accessories",  "http://www.seamaster.com/accessories.htm");
	menu.addSubItem("fishingid", "Rods", "Rods",  "http://www.seamaster.com/flyrods.htm");
	menu.addSubItem("fishingid", "Links", "Links",  "http://www.seamaster.com/links.htm");
	menu.addSubItem("fishingid", "Superfly Tournament", "Superfly Tournament",  "http://www.seamaster.com/superfly.htm");
	
	menu.addSubItem("galleryid", "Photo Album", "Photo Album",  "http://www.seamaster.com/gallery.htm");
	menu.addSubItem("galleryid", "Video", "Video",  "http://www.seamaster.com/marlinvideos.html");
        menu.addSubItem("galleryid", "Historic", "Historic",  "http://www.seamaster.com/history.htm");
	menu.addSubItem("galleryid", "Art", "Art",  "http://www.seamaster.com/bronze.htm");
        
	menu.addSubItem("contactid", "Seamaster", "Seamaster",  "http://www.seamaster.com/feedback_form.htm");
	menu.addSubItem("contactid", "Guides", "Guides", &quot;http://www.seamaster.com/guides.htm&quot;);
menu.addSubItem(&quot;contactid&quot;,&nbsp; &quot;http://www.seamaster.com/dealers.htm&quot;);
menu.addSubItem(&quot;shopid&quot;, "Shop Seamaster", "Shop Seamaster",  "http://www.seamaster.com/order.html");
        menu.addSubItem("shopid", "Shop The Internet", "Shop The internet",  "http://www.seamaster.com/shopthenet.html");
	
	menu.showMenu();
}