// 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.php'],
	['ABOUT US', 'about-us.php'],
	['SERVICES', null, null,
		['MEDISOFT SUPPORT', 'medisoft-technical-support-services.php'],
		['HIPAA BACKUP SERVICE', 'backup-service.php'],
		['APPLICATION HOSTING (SERVER HOSTING)', 'server-hosting.php'],
		['MEDICAL BILLING SERVICE', 'billing-service.php'],
		['CONSULTATION SERVICE', 'consultation-service.php'],
		['DATA REPAIR', 'data-corruption.php'],
		['DATA CONVERSION', 'data-conversion.php'],
		['e-PRESCRIBING', 'eprescribing.php'],
		['REAL TIME INTERFACING', null, null,
			['<img src="images/icons/XL-RTI.ico" width="16px" height="16px" border="0" align="left" />&nbsp;&nbsp;&nbsp;&nbsp;X-LINK', 'xlink.php'],
			['<img src="images/icons/medcon.ico" width="16px" height="16px" border="0" align="left" />&nbsp;&nbsp;&nbsp;&nbsp;COMMUNICATIONS MANAGER', 'ndc-medical-connect.php'],
			['NDC LAB CONNECT', 'ndc-lab-connect.php']
		],
		['EDI', null, null,
			['GATEWAYEDI', 'gatewayedi.php'],
			['RELAYHEALTH EDI', 'relayhealth-edi.php'],
		],
		['WEB VISIT', 'relay-health.php'],
		['BILL FLASH', 'bill-flash.php'],
		['CUSTOM PROGRAMMING', 'http://www.csoftwares.com', {'tw':'_blank'}],
		['HARDWARE', 'windows-7-pro-workstation.php'],
	],
	['RESOURCES', null, null,
		['SERVICE PACKS', 'service-pack-downloads.php'],
		['ANTI-SPYWARE', 'spyware.php'],
	],
	['MEDISOFT', null, null,
		['V17', 'medisoft-v17.php'],
		['V16 QUICK GLANCE', 'medisoft-v16-quick-glance.php'],
		['<img src="images/icons/Medisoft.ico" width="16px" height="16px" border="0" align="left" />&nbsp;&nbsp;&nbsp;&nbsp;PATIENT ACCOUNTING', 'patient-accounting.php'],
		['<img src="images/icons/Medisoft.ico" width="16px" height="16px" border="0" align="left" />&nbsp;&nbsp;&nbsp;&nbsp;ADVANCED PATIENT &nbsp;&nbsp;&nbsp;&nbsp;ACCOUNTING', 'advanced.php'],
		['<img src="images/icons/Medisoft.ico" width="16px" height="16px" border="0" align="left" />&nbsp;&nbsp;&nbsp;&nbsp;NETWORK PROFESSIONAL', 'network-pro.php'],
		['<img src="images/icons/cd.ico" width="16px" height="16px" border="0" align="left" />&nbsp;&nbsp;&nbsp;&nbsp;CODES ON DISK', 'codes-on-disk.php'],
		['<img src="images/icons/Office_Hours.ico" width="16px" height="16px" border="0" align="left" />&nbsp;&nbsp;&nbsp;&nbsp;OFFICE HOURS &nbsp;&nbsp;&nbsp;&nbsp;PROFESSIONAL', 'office-hours.php'],
		['ENCODER PRO', 'encoder-pro.php'],
	],
	['BUY ONLINE', '/zen'],
	['CONTACT US', 'contact.php'],
	['FORUM', 'forum/'],
	['LOGIN', 'login.php'],
];


