// 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','index.html'],

['Solutions','solutions.html',null,
		['eBusiness/Web Based','ebusiness.html'],
		['Data Management/Analysis','itmanagement.html'],
		['IT Management','itmanagement.html'],
		['Enterprise Application','enterprise.html'],
		['Infrastructure/Network','network.html'],	
		['Compliance','compliance.html'],
		['Brochures','brochures.html'],
	],
	['About Us','aboutus.html'],
	
	['Contact Us','contact.php'],
	
		['Careers','careers.html'],
	
	['Media','media.html'],
	
];


