var faqMenu		= new McMenu()
					.addItem('General',					'faqs_general.htm')
					.addItem('Using DeviceAnywhere',	'faqs_using_da.htm')
					.addItem('Capabilities',			'faqs_capabilities.htm')
					.addItem('Troubleshooting',			'faqs_troubleshooting.htm')
					.addItem('Billing',					'faqs_billing.htm');

var linkMenu		= new McMenu()
					.addItem('DeviceAnywhere FAQ',		'faqs_general.htm')
					.addItem('Handset Specifications',	'https://developer.sprint.com/show_devices.do')
			//		.addItem('Blackberry Documentation','/help/BlackberryDocumentation.pdf');

var mcData = new McMenu ('menuWrapper') // this id must exist in the markup where the menu will be instantiated
	.addItem ('WELCOME',			'welcome.htm')
	.addItem ('SIGNUP', 			'signup.htm')
	.addItem ('DEVICE SELECTION', 	'device_list.htm')
	.addItem ('FAQ', 				'faqs_general.htm', faqMenu)
	.addItem ('LEARN MORE',			'learn_more.htm')
	.addItem ('USEFUL LINKS',		null, linkMenu);