// 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 path = "http://202.57.162.181:1001/";
var MENU_ITEMS = [
	['Home',path+'home.php',null],
	['Profile',path+'profile/',null],
	['Service', null, null,
		['Product',null,null,
		 	['Object',path+'service/index.php?option=product&task=object',null],
			['Transportation',path+'service/index.php?option=product&task=transportation',null],
			['Furniture',path+'service/index.php?option=product&task=furniture',null]
		 ],
		['Graphic',null,null,
		 	['Packaging',path+'service/index.php?option=graphic&task=packaging',null],
			['Print',path+'service/index.php?option=graphic&task=print',null]
		 ],
		['Prototype',null,null,
		 	['SLA',path+'service/index.php?option=prototype&task=sla',null],
			['SLS',path+'service/index.php?option=prototype&task=sls',null],
			['Z-corp',path+'service/index.php?option=prototype&task=z_corp',null],
			['Other',path+'service/index.php?option=prototype&task=other',null]
		 ],
		['Exhibit',path+'service/index.php?option=exhibit',null],
		['Digitize<br>Imaging',path+'service/index.php?option=digitize_image',null]
	],
	['Member',path+'member', null],
	['Contact',path+'contact',null]
];