/*
  --- menu items --- 
  note that this structure has changed its format since previous version.
  additional third parameter is added for item scope settings.
  Now this structure is compatible with Tigra Menu GOLD.
  Format description can be found in product documentation.
*/
var MENU_ITEMS = [
	['My Details', 'details.php', '',
		['> Contact Details', 'details.php'],
		['> Biography', 'details_bio.php'],
		['> Change Password', 'password.php'],
	],
	['Search', 'search.php', null,
		['> Search a Friend', 'search.php'],
		['> Image Gallery', 'gallery.php'],
	],
	['Networking', 'reunions.php', null,
		['> Reunions & Events', 'reunions.php'],
		['> Life Interest Links', 'life_interest.php'],
		['> Message Board', 'index.php'],
		['> Live Chat', 'chat.php'],
	],
//	['People News', 'awards.php', null,
//		['> Awards Night', 'awards.php'],
//		['> Postcards', 'postcards.php'],
//	],
	['Stepping Stones', 'job_seeker.php', null,
		['> Job Seeker Links', 'job_seeker.php'],
		['> Tertiary Trail', 'tertiary.php'],
	],
	['Soul Searching', 'ss_mindmatters.php', null,
		['> Mind Matters', 'ss_mindmatters.php'],
		['> Acting for Justice', 'ss_justice.php'],
		['> Living Communities', 'ss_community.php'],
		['> Sacramental Moments', 'ss_sacramental.php'],
		['> Prayer Space', 'ss_prayer.php'],
	],
	['Log Out', 'includes/log_out.php', null, null]
];





/*
  --- menu level scope settins structure --- 
  note that this structure has changed its format since previous version.
  Now this structure has the same layout as Tigra Menu GOLD.
  Format description can be found in product documentation.
*/
var MENU_POS = [
{
	// item sizes
	'height': 20,
	'width': 120,
	// menu block offset from the origin:
	//	for root level origin is upper left corner of the page
	//	for other levels origin is upper left corner of parent item
	'block_top': 130,
	'block_left': 100,
	// offsets between items of the same level
	'top': 0,
	'left': 120,
	// time in milliseconds before menu is hidden after cursor has gone out of any items
	'hide_delay': 200,
	'expd_delay': 200,
	'css' : {
		'outer': ['m0l0oout', 'm0l0oover'],
		'inner': ['m0l0iout', 'm0l0iover']
	}
},
{
	'height': 20,
	'width': 155,
	'block_top': 23,
	'block_left': 0,
	'top': 23,
	'left': 0,
	'css': {
		'outer' : ['m0l1oout', 'm0l1oover'],
		'inner' : ['m0l1iout', 'm0l1iover']
	}
},
{
	'block_top': 5,
	'block_left': 140,
	'css': {
		'outer' : ['m0l1oout', 'm0l1oover'],
		'inner' : ['m0l1iout', 'm0l1iover']
	}
}
]