// 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 = [
		// 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'
	['Logout', 'http://www.chronicouch.org/logout.php', {'tw':'_top', 'tt':'Logout', 'sb':'Logout'}],
	['Home', 'http://www.chronicouch.org/index.php', {'tw':'_top', 'tt':'Home Page', 'sb':'Home Page'}],
    ['News', 'http://www.chronicouch.org/news.php', {'tw':'_top', 'tt':'News', 'sb':'News'}],
    ['Contact Us', 'http://www.chronicouch.org/contactus.php', {'tw':'_top', 'tt':'Contact Us', 'sb':'Contact Us'}],
    ['Events', 'http://www.chronicouch.org/Events.php', {'tw':'_top', 'tt':'Scheduled Events', 'sb':'Scheduled Events'}],
    ['Directions', 'http://www.chronicouch.org/Map.php', {'tw':'_top', 'tt':'Directions to Meeting', 'sb':'Directions to Meeting'}],
	['Profile', 'http://www.chronicouch.org/profile_form.php', {'tw':'_top', 'tt':'Edit Profile', 'sb':'Edit Profile'}],
    ['About Us', 'http://www.chronicouch.org/Mission.php', {'tw':'_top', 'tt':'About Us', 'sb':'About Us'}],
    ['Admin          ', null, null,
		// this is how item scope settings are defined
		['Edit Profile', 'http://www.chronicouch.org/profile_form.php', {'tw':'_top', 'tt':'Edit User Profile', 'sb':'Edit User Profile'}],
		// this is how multiple item scope settings are defined
		['Change Password', 'http://www.chronicouch.org/change_password.php', {'tw':'_top', 'tt':'Change Password', 'sb':'Change Password'}],
	]
];
var MENU_ITEMS_ADMIN = [
		// 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'
	['Logout', 'http://www.chronicouch.org/logout.php', {'tw':'_top', 'tt':'Logout', 'sb':'Logout'}],
	['Home', 'http://www.chronicouch.org/index.php', {'tw':'_top', 'tt':'Home Page', 'sb':'Home Page'}],
    ['News', 'http://www.chronicouch.org/news.php', {'tw':'_top', 'tt':'News', 'sb':'News'}],
    ['Contact Us', 'http://www.chronicouch.org/contactus.php', {'tw':'_top', 'tt':'Contact Us', 'sb':'Contact Us'}],
    ['Events', 'http://www.chronicouch.org/Events.php', {'tw':'_top', 'tt':'Scheduled Events', 'sb':'Scheduled Events'}],
    ['Directions', 'http://www.chronicouch.org/Map.php', {'tw':'_top', 'tt':'Directions to Meeting', 'sb':'Directions to Meeting'}],
	['Profile', 'http://www.chronicouch.org/profile_form.php', {'tw':'_top', 'tt':'Edit Profile', 'sb':'Edit Profile'}],
    ['About Us', 'http://www.chronicouch.org/Mission.php', {'tw':'_top', 'tt':'About Us', 'sb':'About Us'}],
    ['Admin          ', null, null,
		// this is how item scope settings are defined
		['List Users', 'http://www.chronicouch.org/listusers.php', {'tw':'_top', 'tt':'List Users', 'sb':'List Users'}],
		// this is how multiple item scope settings are defined
		['Edit Events', 'http://www.chronicouch.org/listevents.php', {'tw':'_top', 'tt':'Edit Events', 'sb':'Edit Events'}],
		['Edit Contacts', 'http://www.chronicouch.org/index.php', {'tw':'_top', 'tt':'Edit Contact List', 'sb':'Edit Contact List'}],
		['Edit Mission Statement', 'http://www.chronicouch.org/index.php', {'tw':'_top', 'tt':'Edit Mission Statement', 'sb':'Edit Mission Statement'}],
	]
];
var MENU_ITEMS_INIT = [
		// 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'
	['Login', 'http://www.chronicouch.org/main_login.php', {'tw':'_top', 'tt':'Login', 'sb':'Login'}],
    ['Register', 'http://www.chronicouch.org/register.php', {'tw':'_top', 'tt':'Register', 'sb':'Register'}],
	['Home', 'http://www.chronicouch.org/index.php', {'tw':'_top', 'tt':'Home Page', 'sb':'Home Page'}],
    ['News', 'http://www.chronicouch.org/news.php', {'tw':'_top', 'tt':'News', 'sb':'News'}],
    ['Contact Us', 'http://www.chronicouch.org/contactus.php', {'tw':'_top', 'tt':'Contact Us', 'sb':'Contact Us'}],
    ['Events', 'http://www.chronicouch.org/Events.php', {'tw':'_top', 'tt':'Scheduled Events', 'sb':'Scheduled Events'}],
    ['Directions', 'http://www.chronicouch.org/Map.php', {'tw':'_top', 'tt':'Directions to Meeting', 'sb':'Directions to Meeting'}],
    ['About Us', 'http://www.chronicouch.org/Mission.php', {'tw':'_top', 'tt':'About Us', 'sb':'About Us'}],

];

