<!--
// Copyright Organic, Inc. 2000.  All rights reserved.  This
// source code file contains proprietary and confidential information
// and trade secrets of Organic, Inc. 

/*
 * create menus, establish what should go inside of each.
 * Every menuItem needs at least two things:
 * the first thing is always the text to appear.
 * second thing is either the url or a submenu
 * third thing is a submenu, only used if menuItem has url and subMenu (no examples)
 * Please note that commas are always used except on the last item in a set
 * Must escape single quotes in text
 */

function getMenus()
{
menus.aCompanyMenu =
makeMenu( 
	['Sr. Management Team', '/about/company/management/index.html'],
	['Board of Directors', '/about/company/board/index.html'],
	['Ethics & Compliance', '/about/company/ethics/index.html'],
	['Doing Business With Qwest', '/about/company/business/index.html'],
	['Sponsorships', '/about/company/sponsorships/index.html'],
	['Corporate Contacts', '/about/company/contact/index.html'],
	['Community Involvement', '/about/company/community/index.html']
)
menus.aCompanyMenu.url = '/about/company'

menus.aMediaMenu =
makeMenu( 
	['Press Releases', '/about/media/'],
	['Press Kit', 'http://press.qwestapps.com/'],
	['Investor Kit', 'http://phx.corporate-ir.net/phoenix.zhtml?c=119535&p=irol-infoReq']
)
menus.aMediaMenu.url = '/about/media/'

menus.aInvestorMenu =
makeMenu( 
	['Financial Information', 'http://investor.qwest.com/index.php?s=118',
		makeMenu(
			['Quarterly Earnings Releases', 'http://investor.qwest.com/Earnings'],
			['SEC Filings', 'http://phx.corporate-ir.net/phoenix.zhtml?c=119535&p=irol-sec'],
			['Fundamentals', 'http://investor.qwest.com/index.php?s=124'],
			['Analyst Coverage', 'http://investor.qwest.com/index.php?s=119'],
			['Corporate Structure', '/about/investor/financial/reports/corporate_structure_050104.pdf'],
			['Debt Information', '/about/investor/financial/reports/Debt_Schedule_as_of_6_30_09.xls']
		)
	],
	['Stock Information', 'http://phx.corporate-ir.net/phoenix.zhtml?c=119535&p=irol-stockInformation',
		makeMenu(
			['Stock Chart', 'http://phx.corporate-ir.net/phoenix.zhtml?c=119535&p=irol-stockChart'],
			['Historical Stock Lookup - Qwest', 'http://phx.corporate-ir.net/phoenix.zhtml?c=119535&p=irol-stockLookup'],
			['Historical Stock Lookup - U S WEST', '/about/investor/stock/historical.html'],
			['History of Qwest Stock', '/about/investor/stock/history.html'],
			['Dividend Information', '/about/investor/stock/dividend.html']
		)
	],
	['Shareowner Information', '/about/investor/shareowner/index.html',
		makeMenu(
			['Account Information', '/about/investor/shareowner/accountinfo.html'],          
			['Tax/Cost Basis Information', '/about/investor/shareowner/costbasiscalc.html'],
			['FAQs', '/about/investor/faq/index.html']
		)
	], 
	['Conferences & Events', 'http://investor.qwest.com/index.php?s=19',
		makeMenu(
			['Past Events', 'http://investor.qwest.com/index.php?s=148']
		)
	],
	['Annual Reports', '/about/investor/financial/reports/',
		makeMenu(
			['2008', 'https://materials.proxyvote.com/Approved/749121/20090316/AR_36466'],
			['2007', 'http://ww3.ics.adp.com/streetlink_data/dirq/annual/HTML2/default.htm'],
			['2006', 'http://ww3.ics.adp.com/streetlink_data/dirQ0000/annual/HTML1/default.htm'],
			['2005', '/about/investor/financial/reports/cd_files/2006/Qwest2006AR/HTML1/default.htm'],
			['2004', 'http://ww3.ics.adp.com/streetlink_data/dirQ0000/annual/html1/default.htm'],
			['2003', '/about/investor/financial/reports/2003/index.html'],
			['2002', '/about/investor/financial/reports/2002/index.html'],
			['2001', '/about/investor/financial/reports/2001/index.html'],
			['2000', '/about/investor/financial/reports/2000/index.html'],
			['1999', '/about/investor/financial/reports/1999/index.html'],
			['1998', '/about/investor/financial/reports/1998/index.html'],          
			['1997', '/about/investor/financial/reports/1997/index.html']
		)
	],
	['Corporate Governance', '/about/investor/governance/index.html'],
	['Company Information', '/about/investor/corporate/index.html',
		makeMenu(
			['Senior Management Team', '/about/company/management/index.html'],
			['Board of Directors', '/about/company/board/index.html']
		)
	],
	['Request Information', 'http://phx.corporate-ir.net/phoenix.zhtml?c=119535&p=irol-infoReq'],
	['Contact Investor Relations', 'http://investor.qwest.com/contacts']
)
menus.aInvestorMenu.url = '/about/investor/'

menus.aRegulatoryDocumentsMenu =
makeMenu( 
<!--['Wholesale', '/wholesale/']-->
)
menus.aRegulatoryDocumentsMenu.url = '/about/policy/regulatoryDocs/index.html'

menus.aConsumerProtectionMenu =
makeMenu( 
	['Fraud and Identity Theft', '/about/protection/how_steal.html',
		makeMenu(
			['Telephone Fraud', '/about/protection/fraudtypes_phone.html'],
			['Computer Fraud', '/about/protection/fraudtypes_computer.html']
		)
	],
	['Learn How to Protect Yourself', '/about/protection/how_protect.html',
		makeMenu(
			['Identity Theft Checklist', '/about/protection/how_protect.html'],
			['Protect Your Teen', 'http://www.highwayqwest.com/about/protection/summit.html'],
			['Telephone Fraud Protection', '/about/protection/checklist_phone.html'],
			['Computer Fraud Protection', '/about/protection/checklist_computer.html'],
			['Protect Your Small Business', '/about/protection/checklist_business.html']
		)
	],
	['Information for Victims', '/about/protection/victim_steps.html',

	],
	['About the Qwest Program', '/about/protection/about_program.html',
		makeMenu(
			['Identity Theft Video', '/about/protection/about_video.html'],        
			['Teen Summit', '/about/protection/summit.html']
		)
	]
)
menus.aConsumerProtectionMenu.url = '/about/protection/index.html'
}
// -->