function showToolbar()
{
	// addItem(id, text, location, alternativeLocation);
	// addSubItem(idParent, text, location);

	menu = new Menu();
	menu.addItem("home_id", "Home", "44", false, "http://www.mirant.com/index.html", null);
	menu.addItem("our_business_id", "Our Business", "107", true, "http://www.mirant.com/our_business/what_we_do/index.html", null);
	menu.addItem("community_id", "In the Community", "123", false, "http://www.mirant.com/in_the_community/index.html", null);
	menu.addItem("news_id", "News", "57", true, "http://www.mirant.com/news/index.html", null);
	menu.addItem("investor_relations_id", "Investor Relations", "146", true, "http://investors.mirant.com/index.cfm", null);
	menu.addItem("careers_id", "Careers", "62", true, "http://www.mirant.com/careers/index.html", null);	
	
	menu.addSubItem("our_business_id", "Where We Work", "http://www.mirant.com/our_business/where_we_work/index.html");
	menu.addSubItem("our_business_id", "Our Leadership", "http://www.mirant.com/our_business/our_leadership/index.html");
	menu.addSubItem("our_business_id", "Corporate Governance", "http://www.mirant.com/our_business/corp_governance/index.html");
	menu.addSubItem("our_business_id", "Our History", "http://www.mirant.com/our_business/our_history/index.html");

	menu.addSubItem("news_id", "Press Releases", "http://investors.mirant.com/releases.cfm");
	menu.addSubItem("news_id", "Media Kit", "http://www.mirant.com/news/media_kit/index.html");
	menu.addSubItem("news_id", "Media Contacts", "http://www.mirant.com/news/media_contacts/index.html");

	menu.addSubItem("investor_relations_id", "Events & Presentations", "http://investors.mirant.com/events.cfm");	
	menu.addSubItem("investor_relations_id", "Financial Information", "http://investors.mirant.com/results.cfm");
	menu.addSubItem("investor_relations_id", "SEC Filings", "http://investors.mirant.com/sec.cfm");	
	menu.addSubItem("investor_relations_id", "Annual Reports and Proxy Statements", "http://investors.mirant.com/annuals.cfm");	
	menu.addSubItem("investor_relations_id", "Stock Information", "http://investors.mirant.com/stockquote.cfm");
	menu.addSubItem("investor_relations_id", "Supplemental Information", "http://investors.mirant.com/downloads.cfm?CategoryID=2999&Year=");
	menu.addSubItem("investor_relations_id", "Investor FAQs", "http://investors.mirant.com/faq.cfm");
	menu.addSubItem("investor_relations_id", "Contact Us", "http://investors.mirant.com/contactus.cfm");
	
	menu.addSubItem("careers_id", "Department Highlights",  "http://www.mirant.com/careers/department_highlights/index.html");
	menu.addSubItem("careers_id", "Candidate Preparation",  "http://www.mirant.com/careers/getting_prepared/index.html");
	menu.addSubItem("careers_id", "Open Positions",  "http://jobs-mirant.icims.com/mirant_jobs/jobs/candidate/jobs.jsp");
	menu.addSubItem("careers_id", "Register",  "http://jobs-mirant.icims.com/mirant_jobs/jobs/candidate/candidate.jsp?from=login&jobid=null");
	menu.addSubItem("careers_id", "Log In",  "http://jobs-mirant.icims.com/mirant_jobs/jobs/candidate/login.jsp");
	menu.addSubItem("careers_id", "Pre-employment Testing", "http://www.mirant.com/careers/preemp_testing/index.html");

	menu.showMenu();
}




