// 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 Profile',null, null,
		['Profile','profile.htm', {'tw' : 'mainFrame'}],
		['Vision&Mission','vision.htm', {'tw' : 'mainFrame'}],
	],
['Products & Services','products/index.htm', {'tw' : 'mainFrame'},
],
		['Process', null, null,
		['Fabrication','fabrication.htm', {'tw' : 'mainFrame'}],
		['Test Assembly','testassembly.htm', {'tw' : 'mainFrame'}]
	],
['QSHE Policy','quality.htm', {'tw' : 'mainFrame'},
],
//['Jobs opportunity','quality.htm', {'tw' : 'mainFrame'},
//],

		['Links', null, null,
		['Berli Jucker','http://www.bjc.co.th/', {'tw' : '_blank'}],
	],
	['Contact us','contact.htm', {'tw' : 'mainFrame'}]
];
