//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("homeid", "Home", "Home",  "http://www.shawneepress.com", null);

	menu.addItem("aboutusid", "About Us", "About Us",  null, null);
	menu.addItem("topsellersid", "Editor's Picks", "Editor's Picks",  null, null);
	menu.addItem("productsid", "Purchasing", "Purchasing",  null, null);
	menu.addItem("linkid", "Links & Resources", "Link & Resources",  null, null);
	menu.addItem("newsid", "News & Events", "News & Events",  null, null);
	menu.addItem("clubsid", "INSIDE Choral Review Club", "INSIDE Choral Review Club",  "/choralclubform.asp", null);
	menu.addItem("composersid", "Composers", "Composers",  null, null);
	menu.addItem("contactid", "Contact Info", "Contact Info",  null, null);
	
	menu.addSubItem("homeid", "Home", "Home",  "http://www.shawneepress.com", "");	
	menu.addSubItem("aboutusid", "Our History", "Our History",  "history.asp", "");
	menu.addSubItem("aboutusid", "Info on Fred Waring's America", "Info on Fred Waring's America",  "http://www.libraries.psu.edu/waring", "target=_blank");	
	menu.addSubItem("aboutusid", "Who We Represent", "Who We Represent",  "divisions.asp", "");
	
		
	menu.addSubItem("topsellersid", "Acappella", "Acappella",  "acap.asp", "");
	menu.addSubItem("topsellersid", "Cathedral Series", "Cathedral Series",  "cath.asp", "");
	menu.addSubItem("topsellersid", "Celebration Series", "Celebration Series",  "cel.asp", "");
	menu.addSubItem("topsellersid", "Christmas-Sacred & Secular", "Christmas-Sacred & Secular",  "Christmas.asp", "");
	menu.addSubItem("topsellersid", "Concert-Elementary", "Concert-Elementary",  "e-concert.asp", "");	
	menu.addSubItem("topsellersid", "Concert-Secondary", "Concert-Seconary",  "s-concert.asp", "");
	menu.addSubItem("topsellersid", "General-Sacred", "General-Sacred",  "POST.asp", "");
	menu.addSubItem("topsellersid", "Holiday-Secondary", "Holiday-Secondary",  "HOLHS.asp", "");	
	menu.addSubItem("topsellersid", "Lent/Easter Cantatas", "Lent/Easter Cantatas",  "CANTEA.asp", "");	
	menu.addSubItem("topsellersid", "Lent/Easter Chorals", "Lent/Easter Chorals",  "lent.asp", "");	
	menu.addSubItem("topsellersid", "Orff", "Orff",  "Orff.asp", "");	
	menu.addSubItem("topsellersid", "Shawnee Classics", "Shawnee Classics",  "classic.asp", "");
	menu.addSubItem("topsellersid", "Shawnee Selects", "Shawnee Selects",  "select.asp", "");
	menu.addSubItem("topsellersid", "Thanksgiving", "Thanksgiving",  "THanks.asp", "");
	menu.addSubItem("topsellersid", "2008 Top Sellers-School", "2008 Top Sellers-School",  "PDF/2008TopSellers-School.pdf", "");
	menu.addSubItem("topsellersid", "2008 Top Sellers-Church", "2008 Top Sellers-Church",  "PDF/2008TopSellers-Sacred.pdf", "");

	menu.addSubItem("productsid", "How to Order", "How to Order",  "dealers.asp", "");
	menu.addSubItem("productsid", "Dealer Directory", "Dealer Directory",  "dealers.asp", "");
	menu.addSubItem("productsid", "Product Search", "Product Search",  "search.asp", "");
	
	menu.addSubItem("linkid", "Choreography", "Choreography",  "choreography.asp", "");
	menu.addSubItem("linkid", "Fiftal Handout", "Fiftal Handout",  "pdf/Fiftal_MITM_Elem_handout.pdf", "target=_blank");
	menu.addSubItem("linkid", "Fred Waring's America", "Fred Waring's America",  "http://www.libraries.psu.edu/waring", "target=_blank");
	menu.addSubItem("linkid", "Fred Waring Choral Award", "Fred Waring Choral Award",  "pdf/WaringChoralAward.pdf", "target=_blank");
	menu.addSubItem("linkid", "Links", "Links",  "links.asp", "");
	menu.addSubItem("linkid", "Piano Method", "Piano Method",  "keys.asp", "");
	menu.addSubItem("linkid", "Site Map", "Site Map",  "sitemap.asp", "");
	menu.addSubItem("linkid", "Tone Syllables", "Tone Syllables",  	"pdf/M0033.pdf", "target=_blank");
	menu.addSubItem("linkid", "Worship Resources-Spring 2009", "Worship Resources-Spring 2009",  	"pdf/P9262.pdf", "target=_blank");
	menu.addSubItem("linkid", "Year in Song 2009-2010", "Year in Song 2009-2010",  	"pdf/YIS0910.pdf", "target=_blank");

	menu.addSubItem("newsid", "Joseph Martin", "Joseph Martin",  "PDF/martinpr.pdf", "");
	menu.addSubItem("newsid", "Greg Gilpin", "Greg Gilpin",  "PDF/gilpinpr.pdf", "");
	menu.addSubItem("newsid", "Workshops", "Workshops",  "workshops.asp", "");
			
	menu.addSubItem("composersid", "Composer Profiles", "Composer Profiles",  "composers.asp", "");

	menu.addSubItem("contactid", "Contact Info", "Contact Info",  "contacts.asp", "");
	menu.addSubItem("contactid", "Request a Catalog", "Request a Catalog",  "/catalog.asp", "");
	menu.addSubItem("contactid", "Submit Feedback", "Submit Feedback",  "mailto:info@shawneepress.com?subject=Website Feedback", "");
	menu.addSubItem("contactid", "Permissions", "Permissions",  "permissions.asp", "");
	menu.addSubItem("contactid", "Submissions", "Submissions",  "submissions.asp", "");
	menu.addSubItem("contactid", "Careers", "Careers",  "employment.asp", "");
	menu.showMenu();
}