// 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 = [
	['Issue Details', null, null,
		['Current Issue', 'journal/currentIssue.php', {'tw':'_top', 'tt':'Welcome Page', 'sb':'Test Status Bar Message'}],
		['Previous Issues', 'previousIssues.php'],
	],

	['Authors', '', null,
						['Welcome Page', 'authors/authorsMain.php'],
						['Submissions', 'authors/authorsSubmit.php'],
						['Change Personal Details', 'authors/authorsUpdateInfo.php'],
						['Guide to Authors', 'authorsGuide.php'],
	],

	['Reviewers', '', null,
			 
			 			['Welcome Page', 'reviewers/reviewersMain.php'],
						['Change Personal Details', 'reviewers/reviewersUpdateInfo.php'],
						['Guide to Reviewers', 'reviewersGuide.php'],
	],
	['Editors', '', null,
			 
			 			['Welcome Page', 'editors/editorsMain.php'],
						['Submissions', ''],
						['Change Personal Details', ''],
	],

	['Contact Us', null, null,
		['Enquiry Form', 'enquiry.php'],
		['Contact Address', 'aims.php'],
	],

	
];

