/*
  --- menu level scope settings structure --- 
*/
var MENU_POS = [
{
 	// first level
	// item sizes
	'width': 200,
	'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': 148,
	'block_left': 0,
	// 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': 100,
	'expd_delay': 100,
	'css' : {
		'inner' : ['m-out-inner-1', 'm-over-inner-1'],
		'outer' : ['m-out-outer-1', 'm-over-outer-1']
	}
},
{
  	// second level
	// item sizes
	'width': 170,
	'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': 0,
	'block_left': 205,
	// offsets between items of the same level
	'top': 21,
	'left': 0,
	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	'hide_delay': 100,
	'expd_delay': 100,
	'css' : {
		'inner' : ['m-out-inner-other', 'm-over-inner-other'],
		'outer' : ['m-out-outer-other', 'm-over-outer-other']
	}
},
{
  	// third level
	// item sizes
	'width': 230,
	'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': 0,
	'block_left': 175,
	// offsets between items of the same level
	'top': 21,
	'left': 0,
	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	'hide_delay': 100,
	'expd_delay': 100,
	'css' : {
		'inner' : ['m-out-inner-other', 'm-over-inner-other'],
		'outer' : ['m-out-outer-other', 'm-over-outer-other']
	}
}
]

