// 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 = [
	['<img src="image/Me.png" border="0" align="baseline" /> <span class=TopItem >My Profile</span>','javascript:onUserProfile();'
	],
	['<img src="image/Help_Global.png" border="0" align="baseline" /> <span class=TopItem>Help</span>&nbsp;', null, null,
		// this is how item scope settings are defined
		['ipathmaker Help', 'javascript:onShowHelp();'],
		['Live Help', 'javascript:onLiveHelp();'],
		['FAQ', 'javascript:onFAQ();'],
		['Suggestion', 'javascript:onUserSuggestion();'],
		['SkyMark Homepage', 'javascript:onShowSkymarkHomePage();'],
		['About ipathmaker', 'javascript:onShowAboutIPathMaker();']
	],
	['<img src="image/LogOut.gif" border="0" align="baseline" /> <span class=TopItem>Log Out</span>&nbsp;','javascript:onLogOut();'
	]
];

