
function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("homepageid", "Home Page", "Home Page",  null, null);
	//menu.addItem("aboutcsscid", "About CSSC", "About CSSC",  null, null);
	menu.addItem("hottopicsid", "Hot Topics", "Hot Topics",  null, null);
	menu.addItem("systemstatusid", "System Status", "System Status",  null, null);
	menu.addItem("rapsid", "RAPS", "RAPS",  null, null);
	menu.addItem("referencesid", "References", "References",  null, null);
	menu.addItem("usergroupid", "User Group/Training", "User Group/Training",  null, null);
	menu.addItem("faqsid", "FAQs", "FAQs", null, null);
	//menu.addItem("sitemapid", "Site Map", "Site Map", null, null);
	//menu.addItem("searchid", "Site Search", "Site Search", null, null);
	menu.addItem("otherlinksid", "Other Links", "Other Links", null, null);
	
	
	menu.addSubItem("homepageid", "Go to Home ", "Go to Home ", "http://www.csscoperations.com/index.html");
	//menu.addSubItem("homepageid", "Go to PDIC Menu", "Go to PDIC Menu", "http://www.csscoperations.com/new/pdic/pdic-menupopup2.htm");
	menu.addSubItem("homepageid", "End of Menu", "End of Menu", "http://www.csscoperations.com/index.html");
	
	
	
	//menu.addSubItem("aboutcsscid", "How to Contact CSSC", "How to Contact CSSC", "http://www.mcoservice.com/new/aboutcssc/contact_info_03_01_01.html");
	//menu.addSubItem("aboutcsscid", "Hours of Operation", "Hours of Operation",  "http://www.mcoservice.com/new/aboutcssc/holiday_schedule.html");
	//menu.addSubItem("aboutcsscid", "Holiday Schedule", "Holiday Schedule",  "http://www.mcoservice.com/new/aboutcssc/holiday_schedule.html");
	//menu.addSubItem("aboutcsscid", "End of Menu", "End of Menu", null, null);

	//menu.addSubItem("hottopicsid", "2005 Regional Training", "2005 Regional Training", "http://mcoservice.com/new/hottopics/2005regtraining_060705.htm");
	//menu.addSubItem("hottopicsid", "RAPS Sweep Date", "RAPS Sweep Date", "http://mcoservice.com/new/hottopics/raps-sweepdate_040405.htm");
	menu.addSubItem("hottopicsid", "Go To Hot Topics", "Go To Hot Topics", "http://www.csscoperations.com/new/pdic/combo-hottopic/hottopics.html");
	menu.addSubItem("hottopicsid", "End of Menu", "End of Menu", null, null);
	
	menu.addSubItem("systemstatusid", "Check System Status", "Check System Status",  "http://www.csscoperations.com/new/systemstatus/systemstatus.html");
	menu.addSubItem("systemstatusid", "End of Menu", "End of Menu", null, null);


	
    menu.addSubItem("rapsid", "Register for Email Notifications", "Register for Email Notifications",  "http://www.csscoperations.com/new/registration_home_raps.htm");
	menu.addSubItem("rapsid", "Enroll to Submit Risk Adjustment Data", "Enroll to Submit Risk Adjustment Data",  "http://www.csscoperations.com/new/rapformat/enroll_submit_rad.html");
	menu.addSubItem("rapsid", "RAPS-Risk Adjustment Processing System", "Risk Adjustment Processing System",  "http://www.csscoperations.com/new/rapformat/newraps.html");
	menu.addSubItem("rapsid", "FERAS-Front-End Risk Adjustment System ", "Front-End Risk Adjustment System ",  "http://www.csscoperations.com/new/rapformat/feras.html");
	menu.addSubItem("rapsid", "End of Menu", "End of Menu", null, null);


	
	menu.addSubItem("referencesid", "Official Links", "Official Links",  "http://www.csscoperations.com/new/references/officiallinks.html");
	menu.addSubItem("referencesid", "CMS Instructions", "CMS Instructions",  "http://www.csscoperations.com/new/references/cmsinstructions.html");
    menu.addSubItem("referencesid", "Other References", "Other References",  "http://www.csscoperations.com/new/references/other_references.html");
	menu.addSubItem("referencesid", "End of Menu", "End of Menu", null, null);

	

	menu.addSubItem("usergroupid", "User Group Information", "User Group Information",  "http://www.csscoperations.com/new/usergroup/usergroupinfo.html");
	menu.addSubItem("usergroupid", "Training", "Training",  "http://www.csscoperations.com/new/usergroup/traininginfo.html");
	menu.addSubItem("usergroupid", "End of Menu", "End of Menu",  null, null);

	
	menu.addSubItem("faqsid", "Go to Risk Adjustment Data FAQs", "Go to Risk Adjustment Data FAQs", "http://www.csscoperations.com/new/faqs/radfaqs.html");
	menu.addSubItem("faqsid", "End of Menu", "End of Menu", null, null);	

	
	//menu.addSubItem("sitemapid", "Go to Site Map", "Site Map", "http://www.mcoservice.com/new/pdic/sitemap/combo-sitemap.html");
	//menu.addSubItem("sitemapid", "End of Menu", "End of Menu", null, null);
	
	//menu.addSubItem("searchid", "Go to Search", "Site Search", "http://www.mcoservice.com/new/search/search.html");
	//menu.addSubItem("searchid", "End of Menu", "End of Menu", null, null);
	
	//Created an Other Links menu selection that includes the site map, search and archives links within the top menu (012908).
	
	menu.addSubItem("otherlinksid", "Archives", "Archives", "http://www.csscoperations.com/new/pdic/archives.html");
	menu.addSubItem("otherlinksid", "Site Map", "Site Map", "http://www.csscoperations.com/new/pdic/sitemap/combo-sitemap.html");
	menu.addSubItem("otherlinksid", "Search", "Site Search", "http://www.csscoperations.com/new/search.html");
	menu.addSubItem("otherlinksid", "End of Menu", "End of Menu", null, null);
	
	menu.showMenu();
}