//
// Menu Item format:
// 
//   ['Text to display', 'Link to content']
//
// or
//
//   ['Text to display', 'Link to content', {OPTIONS}]
//
//
// OPTIONS format:
//
//   {'option' : value}
//
// or
//
//   {'option1' : value1, 'option2' : value2}
//
//
// Available options:
//
//   width : Width of the individual menu item
//   example : {'width' : 100}
//
//   contentWidth : width of the drop down menu items in a menu
//   example : {'contentWidth' : 120}
//
//   target : where will the link open
//   options: _blank  - Open in a new window or tab
//            _self   - Open in the same window or tab (default)
//            _parent - Open in the parent window or tab
//   example : {'target' : '_blank'}
//

var MENU_ITEMS = [
  ['Home', 'index.aspx', {'width' : 100}],
	['Corporate', null, {'width' : 100, 'contentWidth' : 140},
		['About MBS', 'About_MBS.aspx'],
    ['Sustainability', 'Sustainability.aspx'],
		['Supplier Diversity', 'Diversity.aspx'],
		['Partners &amp; Alliances', 'Partners.aspx'],
		['About Sealaska', 'sealaska.aspx'],
		['News &amp; Events', 'News.aspx'],
		['Executive Staff', 'Managed-Business-Solutions-Executive-Staff.aspx'],
		['Privacy Policy', 'privacy.aspx']
	//	['Environmental Policy', 'pdf/EMS_Policy.pdf', {'target':'_blank'}]
	],
	['Software Development &amp; Support', null, {'width' : 230, 'contentWidth' : 240},
	  ['Application Support', 'Application-support.aspx'],
		['Business Intelligence Solutions', 'Business-Intelligence-Solutions.aspx'],
		['Enterprise Mobile Applications','Enterprise-Mobile-Applications.aspx'],
		['GIS Solutions', 'GIS-Data-Modeling.aspx'],
		['IT Assessments', 'Information-Technology-Assessments.aspx'],
		['Shareholder Management Solutions', 'Shareholder-Management-System.aspx'],
		['Software Development', 'Custom-Application-Development.aspx'],
		['Tax Processing Software', 'Tax-Processing-Software.aspx'],
	],
	['Data Center Services', null, {'width' : 200, 'contentWidth' : 230},
		['Data Center Design & Build', 'Data-Center-Design-Build-Provision.aspx'],
    ['Data Center Consolidation', 'Data-Center-Consolidation.aspx'],
    ['Data Center Management', 'Data-Center-Management.aspx'],
    ['Media Backup & Migration Services', 'Media-Backup-Migration-Services.aspx'],
	  ['Infrastructure Management', 'Infrastructure-Management.aspx'],
    ['Records Management Solutions', 'Records-Management-Solutions.aspx'],
		['Global Offsite Storage', 'Global-Offsite-Storage.aspx'],
		['Conversion Services', 'File-Conversion-Services.aspx'],
		['Staffing Services', 'Staffing-Services.aspx'],
		['Hardware &amp; Software Services', 'Hardware-Software-Sales.aspx']
	],
	['Federal', null, {'width' : 120, 'contentWidth' : 240},
	  ['Overview', 'federal.aspx'],
		['Alaska Native-Owned &amp; 8(a) Certified', '8acertified.aspx'],
		['Civil Agencies', 'civil.aspx'],
		['Department of Defense', 'dod.aspx'],
	  ['GSA 8(a) STARS II','GSA-8A-StarsII.aspx'],
		['Department of Homeland Security', 'dhs.aspx'],
		['Federal Services', 'fedservices.aspx'],
		['Contract Vehicles', 'contract.aspx']
	]
];

