function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("webmasterid", "About Us", "About Us",  null, null);
	menu.addItem("news", "Seminars", "Seminars",  null, null);
	menu.addItem("faqs", "Debt Free Answers", "Frequently Ask Questions About What We Do!",  null, null);
	menu.addItem("Services", "Online Services", "Online Services",  null, null);
	menu.addItem("miscid", "Customer Services", "Customer  Services",  null, null);
	

	menu.addSubItem("webmasterid", "Directions to Us", "Directions to Us",  "http://www.debtccs.org/map.html");
//	menu.addSubItem("webmasterid", "Company Profile", "Company Profile",  "http://www.debtccs.org/feedback/");
	menu.addSubItem("webmasterid", "Feedback", "Feedback",  "http://www.debtccs.org/Contacts/contacts.html");
//	menu.addSubItem("webmasterid", "Facilitators", "About The Facilitators", "http://www.debtccs.org/About_Us/facilitators.html");
	menu.addSubItem("webmasterid", "Home Page", "Back To HomePage",  "http://www.debtccs.org");


	menu.addSubItem("faqs", "Frequently Asked Questions", "Frequently Asked Questions",  "http://www.debtccs.org/faq");
	menu.addSubItem("faqs", "In-Debt Warning Signs", "In-Debt Warning Signs",  "http://www.debtccs.org/warning.htm");

	menu.addSubItem("news", "Online Seminar", "Online Seminar Preview",  "http://www.debtccs.org/seminar2.htm");
	menu.addSubItem("news", "Live Seminars", "Coming Soon!",  "sc");
	menu.addSubItem("news", "Seminar Schedule", "Seminar Schedule",  "http://www.debtccs.org/seminars/schedules.html");
	
	
	menu.addSubItem("Services", "Donations", "Make a Donations",  "/contrib.htm");
	menu.addSubItem("Services", "Apply Online", "Online Application",  "http://www.debtccs.org/applyonline");

	menu.addSubItem("miscid", "Apply Online", "Online Application",  "http://www.debtccs.org/applyonline");
	menu.addSubItem("miscid", "Web Mail Account", "Now Check your FFCCS Account online!", "/webmail");
	menu.addSubItem("miscid", "Download Forms", "Coming Soon!", "/sc" );
	
	menu.showMenu();
}