/*
  --- 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
	'width': 150,
	'height': 20,
	// 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': 276,
	'block_left': 9,
	// offsets between items of the same level
	'top': 22,
	'left': 0,
	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	'hide_delay': 300,
	'expd_delay': 0,
	'css' : {
		'outer' : ['root_outside_mouseout', 'root_outside_mouseover'],
		'inner' : ['root_inside_mouseout', 'root_inside_mouseover'],
		'shadow' : ['root_shadow_mouseout', 'root_shadow_mouseover']
	},
	
	// will continue to display the 'moused-over' style if any of its children are highlighted
	'maintain_highlight': true,
	
	// will add a user-specified image at right side of menu item if it has children
	'indicate_expandable': false,
	'indicate_expandable_image':'',
	
	// choose to use a drop-shadow or not
	'use_shadow': true,
	'shadow_x': 2,
	'shadow_y': 2,
	
	// eable pop-out effect (only used with a shadow, and buttons which are pressed agains one another)
	// makes the currently selected button 'pop out' from the rest rather than just highlighting
	'pop_out_effect': true,
	
	// will try and vertically reposition any submenus if we run out of vertical space
	'vertical_safeguard': true
},
{
	'height': 22,
	'width': 140,
	'block_top': 2,
	'block_left': 142,
	'top': 21,
	'css' : {
		'outer' : ['sub_outside_mouseout', 'sub_outside_mouseover'],
		'inner' : ['sub_inside_mouseout', 'sub_inside_mouseover'],
		'shadow' : ['sub_shadow', 'sub_shadow']
	},
	'indicate_expandable': true,
	'indicate_expandable_image':'http://engineering.uakron.edu/jscript/menu2007/expand.gif'
},
{
	'block_left': 132
}
]

