//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("webmasterid", "The Rules", "The Rules",  null, null);
	menu.addItem("ordering", "Ordering", "Ordering",  null, null);
	menu.addItem("webmasterid1", "Payment", "Payment",  null, null);
	menu.addItem("newsid", "Shipping", "Shipping",  null, null);
	menu.addItem("freedownloadid", "Previews", "Previews",  null, null);
	menu.addItem("searchengineid", "Tips", "Tips",  null, null);
	menu.addItem("miscid", "Tutorials", "Tutorials",  null, null);

	menu.addSubItem("webmasterid", "Rules to Abide By", "Rules to Abide By",  "http://www.freiscavell.com/level3/copyright.htm", "_self");
	
	menu.addSubItem("ordering", "How to Order", "How to Order",  "http://www.freiscavell.com/level3/ordering.htm", "_self");
	menu.addSubItem("ordering", "Order a Set on CD", "Order a Set on CD",  "http://www.freiscavell.com/level3/CDTemplateSet.htm", "_self");

	menu.addSubItem("webmasterid1", "Payment Options", "Payment Options",  "http://www.freiscavell.com/level3/info.htm", "_self");

	menu.addSubItem("newsid", "How We Ship", "How We Ship",  "http://www.freiscavell.com/level3/info.htm#shipping", "_self");
	
	menu.addSubItem("freedownloadid", "Take a Look", "Take A Look",  "http://www.freiscavell.com/level2/previews.htm", "_self");
	
	menu.addSubItem("searchengineid", "How Do I?", "How Do I?",  "http://www.freiscavell.com/help/howto/labeltemplatehowto.pdf", "_blank");
	menu.addSubItem("searchengineid", "Helpful Info", "Helpful Info",  "http://www.freiscavell.com/level3/tips.htm", "_self");
	menu.addSubItem("searchengineid", "Image Borders-Read This", "Image Borders-Read This",  "http://www.freiscavell.com/level3/imageborders.htm", "_self");
	menu.addSubItem("searchengineid", "Waterproof Labels", "Waterproof Labels",  "http://www.elementsbathandbody.com", "_blank");

	menu.addSubItem("miscid", "Tutorials", "Tutorials",  "http://www.freiscavell.com/level3/tutorials.htm", "_self");

	menu.showMenu();
}

				
