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 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');
	
	