// items structure
// each item is the array of one or more properties:
// [text, link, settings, subitems ...]
// use the builder to export errors free structure if you experience problems with the syntax

var MENU_ITEMS = [
	['Home', 'http://www.omniglobeinternational.com/index.aspx', null,
		/*['Supported Browsers', null, null,
			['Win32 Browsers', null, null, 
				['Internet Explorer 5+'],
				['Netscape 6.0+'],
				['Mozilla 0.9+'],
				['AOL 5+'],
				['Opera 5+'],
				['Safari 3+'] // there must be no comma after the last element
			],
			['Mac OS Browsers', null, null,
				['Internet Explorer 5+'],
				['Netscape 6.0+'],
				['Mozilla 0.9+'],
				['AOL 5+'],
				['Safari 1.0+']
			],
			['KDE (Linux, FreeBSD)', null, null,
				['Netscape 6.0+'],
				['Mozilla 0.9+']
			]*/
		],
		// this is how custom javascript code can be called from the item
		// note how apostrophes are escaped inside the string, i.e. 'Don't' must be 'Don\'t'
		['Services & Solutions', null , null, 
			['Local Number Portability', 'http://www.omniglobeinternational.com/local_number_portability.aspx', null,
			 
			 ['Fallout Management', 'http://www.omniglobeinternational.com/fallout_management.aspx']
			 ],
			 ['Activation','http://www.omniglobeinternational.com/activation.aspx'],
			['Provisioning', 'http://www.omniglobeinternational.com/provisioning.aspx'],
			['Directory Listing', 'http://www.omniglobeinternational.com/directory_listing.aspx'],
			['Outsourced Development', 'http://www.omniglobeinternational.com/outsourced_development.aspx'],
			['Customer Support', 'http://www.omniglobeinternational.com/customer_support.aspx'],
			['e911', 'http://www.omniglobeinternational.com/e911.aspx'],
			['Legal Documentation Services', 'http://www.omniglobeinternational.com/LegalServices.aspx'],
			['Comprehensive Customer Support', 'http://www.omniglobeinternational.com/ComprehensiveCustSupport.aspx']
		],
	
	['About Omniglobe', null, null,
		// this is how item scope settings are defined
		['Company Profile', 'http://www.omniglobeinternational.com/company_profile.aspx', null,
		 ['Service Excellence', 'http://www.omniglobeinternational.com/company_profile.aspx#service_excellence'],
		['Service Portfolio', 'http://www.omniglobeinternational.com/company_profile.aspx#service_portfolio'],
		['Outsourcing to Omniglobe', 'http://www.omniglobeinternational.com/company_profile.aspx#outsourcing_omniglobe']
		 ],
		// this is how multiple item scope settings are defined
		['Corporate Culture', 'http://www.omniglobeinternational.com/corporate_culture.aspx'],
		['Credentials', 'http://www.omniglobeinternational.com/credentials.aspx'],
		['Management', 'http://www.omniglobeinternational.com/management.aspx']
		
	],
	['Careers', null, null,
		['HR Vision', 'http://www.omniglobeinternational.com/hr_vision.aspx'],
		['Openings', 'http://www.omniglobeinternational.com/careers.aspx'],
		['Join Us', 'http://www.omniglobeinternational.com/joinus.aspx']
		
	],
	['Sitemap', 'http://www.omniglobeinternational.com/sitemap.aspx'],
	['Contact Us', 'http://www.omniglobeinternational.com/contact.aspx']
];

