// 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 = [
	['COMPANY', null, null,
		['Corporate Profile', 'companyprofile.html'],
		['Chairman&#39;s Profile', 'chairmanprofile.html'],
		['MD&#39;s Message', 'mdmessage.html'],
		['Our Mission', 'ourmission.html'],
		['Our Vision', 'ourvision.html']
	],
	['SOLUTIONS', '', null,
		['ERP Solutions', 'erp.html', null,
			['Microsoft Dynamics AX', 'microsoftdynamicsax.html' ],
			['Microsoft Dynamics NAV', 'microsoftdynamicsnav.html' ],
			['LS Retail', 'lsretail.html' ]
		],
		// 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'
		['CRM Solutions', 'crmsolutions.html', null,
			['Microsoft Dynamics CRM', 'microsoftdynamicscrm.html' ],
			['Pluto Reporting System', 'pluto.html' ]
		],
		['Enterprise Content Management', 'enterprisecontentmanagement.html', null,
			['Kofax', 'kofax.html' ],
			['OpenText', 'opentext.html' ]
		],
		['Business Resource Outsourcing', 'businessresourceoutsourcingsolutions.html'],
		['Business Process Management', 'businessprocessmanagement.html', null,
			['Bizflow/Handysoft', 'bizflow.html' ]
			
		],
		['Information &amp; Communication Technology', 'informationandcommunicationtechnology.html', null,
			['Security Surveillance Solutions', 'securitysurveillancesolutions.html' ],
			['Structured Cabling Solutions', 'structuredcablingsolutions.html' ],
			['Network Storage Solutions', 'networkstoragesolutions.html' ],
			['IP Telephony Solutions', 'iptelephonysolutions.html' ],
			['IT Maintenance Services', 'itmaintenanceservices.html' ]
		],
		['Software Development Solutions', 'solutionssoftwaredevelopment.html']
	],
	['INDUSTRIES', 'industries.html', null,
		//['Construction &amp; Contracting', 'constructionandcontracting.html'],
		//['Real Estate', 'realestate.html'],
		//['Manufacturing', 'manufacturing.html'],
		//['Retail', 'retail.html'],
		//['Trading &amp; Distribution', 'tradinganddistribution.html'],
		//['Pharmaceuticals', 'pharmaceuticals.html'],
		//['Services', 'services.html'],
		//['Clinics', 'clinics.html'],
		//['Apparel', 'apparel.html']
	],
	['CASE STUDIES', 'casestudy.php'],
	['PRODUCTS', '', null,
		['Microsoft', null, null,
			['Microsoft Dynamics AX', 'productmicrosoftdynamicsax.html' ],
			['Microsoft Dynamics NAV', 'productmicrosoftdynamicsnav.html' ],
			['Microsoft Dynamics CRM', 'productmicrosoftdynamicscrm.html' ]
		],
		['ICT', null, null,
			['Servers (IBM, HP, Dell)', 'servers.html' ],
			['Desktops / Laptops', 'itequipments.html' ],
			['CCTV (Samsung, Axis)', 'securitysurveillanceproducts.html' ],
			['Access Control System', 'accesscontrolsystem.html' ],
			['Cabling (3M, Legrand, Clipsal)', 'structuredcablingproducts.html' ],
			['Storage (IBM, HP, I/O Mega, Netgear)', 'storage.html' ],
			['Firewall (Sonicwall, Cisco, Juniper)', 'firewall.html' ],
			['Telephony System (Avaya, Panasonic, NEC)', 'telephonysystem.html' ]
		],
		['Open Text', 'productopentext.html'],
		['Kofax', 'productkofax.html'],
		['RxCare', 'rxcare.html'],
		['Jet Reports', 'jetreports.html']
	],
	['PARTNERS', 'partners.html'],
	['CLIENTS', 'clients.html']
];


