// 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 = [
	['H O M E', 'index.php', null,
	],
	['P R O F I L E', 'profile.php', null,
	],
	['P R O D U C T S', null, null,
		['ELECTRONICS ITEMS', null, null,
			['Calculator', 'http://www.hkcm.edu.hk/product.php?catid=1'],
			['Clock',  'http://www.hkcm.edu.hk/product.php?catid=4'],
			['Radio', 'http://www.hkcm.edu.hk/product.php?catid=5'],			
			['Pedometer', 'http://www.hkcm.edu.hk/product.php?catid=6']
		],
		// 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'
		['BAG ITEMS', null, null,
			['Cooler bag', 'http://www.hkcm.edu.hk/product.php?catid=7'],
			['Cosmetic bag', 'http://www.hkcm.edu.hk/product.php?catid=8'],
			['Shopping bag', 'http://www.hkcm.edu.hk/product.php?catid=9'],
			['Drawstring bag', 'http://www.hkcm.edu.hk/product.php?catid=10'],
			['Wallet & Coinsbag', 'http://www.hkcm.edu.hk/product.php?catid=11']
		],
		['TOOLS ITEMS', null, null,
			['Multi-function tool', 'http://www.hkcm.edu.hk/product.php?catid=12'],
			['Tool box set', 'http://www.hkcm.edu.hk/product.php?catid=13'],
			['Torch, keychain', 'http://www.hkcm.edu.hk/product.php?catid=14'],
			['Carabiner', 'http://www.hkcm.edu.hk/product.php?catid=15'],
			['Compass', 'http://www.hkcm.edu.hk/product.php?catid=16']
		],
		['GIFTS & PREMIUMS', null, null,
			['Pharmacy promotion', 'http://www.hkcm.edu.hk/product.php?catid=17'],
			['Diary, Notebook', 'http://www.hkcm.edu.hk/product.php?catid=23'],
			['Manicure set', 'http://www.hkcm.edu.hk/product.php?catid=24'],
			['Mug', 'http://www.hkcm.edu.hk/product.php?catid=25'],
			['Stationery', 'http://www.hkcm.edu.hk/product.php?catid=26'],
			['Health care', 'http://www.hkcm.edu.hk/product.php?catid=27'],
			['Other', 'http://www.hkcm.edu.hk/product.php?catid=28']
		],
		['HOUSEWARE', 'http://www.hkcm.edu.hk/product.php?catid=21'],
	],
	['C O N T A C T', 'contact.php']
];


