function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("bookstore", "Bookstore", "Bookstore",  "http://www.uark.edu/bookstore", null);
	menu.addItem("comstore", "Computer Store", "Computer Store", null, null);
	menu.addItem("textbooks", "Textbooks", "Texbooks", null, null);
	menu.addItem("tradebooks", "Tradebooks", "Tradebooks", null, null);
	menu.addItem("supplies", "Dept Supplies", "Dept Supplies", null, null);
	menu.addItem("rzrbkshp", "Razorback Shop", "Razorback Shop", null, null);
	
	menu.addSubItem("bookstore", "Main Site", "Main Site",  "http://www.uark.edu/bookstore/");
//	menu.addSubItem("bookstore", "Graduation", "Graduation",  "http://www.uark.edu/bookstore/graduation.html");
//	menu.addSubItem("bookstore", "The One Ring", "The One Ring",  "http://www.uark.edu/bookstore/onering.html");
//	menu.addSubItem("bookstore", "Employeement", "Empolyeement",  "http://www.uark.edu/bookstore/employeement.html");

	menu.addSubItem("comstore", "Main Site", "Main Site",  "http://www.uark.edu/comstore/");
	menu.addSubItem("comstore", "Service Center", "Service Center",  "http://www.uark.edu/comstore/service.htm");
	menu.addSubItem("comstore", "Gateway", "Gateway",  "http://www.uark.edu/comstore/gw_instruct.htm");
	menu.addSubItem("comstore", "Dell", "Dell",  "http://www.uark.edu/comstore/dell_instruct.htm");
	menu.addSubItem("comstore", "Apple", "Apple",  "http://www.uark.edu/comstore/apple_instruct.htm");
	menu.addSubItem("comstore", "HP", "HP",  "http://www.uark.edu/comstore/pricelist.htm");
//	menu.addSubItem("comstore", "In-Stock", "In-Stock",  "http://www.uark.edu/comstore/stock.html");
//	menu.addSubItem("comstore", "Clearance", "Clearance",  "http://www.uark.edu/comstore/clearance.html");

	menu.addSubItem("textbooks", "Main Site", "Main Site",  "http://www.uark.edu/bookstore/textbooks.html");
	menu.addSubItem("textbooks", "Book Reservations", "Book Reservations",  "http://shop.efollett.com/servlet/BuildMerchantServlet?merfnbr=70428&institutionId=106397&urlnext=/htmlroot/textbooks/efollett/Index.jsp");
//	menu.addSubItem("textbooks", "Continuing Education", "Continuing Education",  "http://www.uark.edu/bookstore/conted.html");

	menu.addSubItem("tradebooks", "Main Site", "Main Site",  "http://www.uark.edu/bookstore/tradebooks.html");
//	menu.addSubItem("tradebooks", "Book Signings", "Book Signings",  "http://www.uark.edu/bookstore/booksignings.html");
//	menu.addSubItem("tradebooks", "Best Sellers", "Best Sellers",  "http://www.uark.edu/bookstore/bestsellers.html");

	menu.addSubItem("supplies", "Main Site", "Main Site",  "http://www.uark.edu/bookstore/supplies/");
	menu.addSubItem("supplies", "StaplesLink.com", "StaplesLink.com",  "http://www.stapleslink.com");

	menu.addSubItem("rzrbkshp", "Main Site", "Main Site",  "http://www.uark.edu/bookstore/razorback.html");
	menu.addSubItem("rzrbkshp", "Online Catalog", "Online Catalog",  "http://shop.efollett.com/htmlroot/spiritshop/SpiritShop.jsp?merfnbr=70428&institutionId=106397&institution=UNIVERSITY%20OF%20ARKANSAS%20AT%20FAYETTEVILLE");
	menu.addSubItem("rzrbkshp", "WebCam", "WebCam",  "http://www.uark.edu/bookstore/webcam.html");

	menu.showMenu();
}
