/* --- menu level scope settins structure --- */
var MENU_POS1 = [
{
// root level configuration (level 0)
	// item sizes
	'height': 24,
	'width': 108,
	// menu block offset from the origin:
	// absolute position of the menu on the page (in pixels)
	//	for root level origin is upper left corner of the page
	//	for other levels origin is upper left corner of parent item
	'block_top': 155,
	'block_left': 240,
	// offsets between items of the same level
	'top': 0,
	'left': 108,
	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	'hide_delay': 200,
	// submenu expand delay after the rollover of the parent 
	'expd_delay': 200,
	// names of the CSS classes for the menu elements in different states
	// tag: [normal, hover, mousedown]
	'css' : {
		'outer' : ['m0l0oout', 'm0l0oover'],
		'inner' : ['m0l0iout', 'm0l0iover']
	}
},
// sub-menus configuration (level 1)
// any omitted parameters are inherited from parent level
{
	'height': 20,
	'width': 166,
	// position of the submenu relative to top left corner of the parent item
	'block_top': 27,
	'block_left': 0,
	'top': 21,
	'left': 0,
	'css' : {
		'outer' : ['m0l1oout', 'm0l1oover'],
		'inner' : ['m0l1iout', 'm0l1iover']
	}
},
// sub-sub-menus configuration (level 2)
{
	'block_top': 3,
	'block_left': 120,
	// the depth of the menu is not limited
	// make sure there is no comma after the last element
	'css' : {
		'outer' : ['m0l2oout', 'm0l2oover'],
		'inner' : ['m0l2iout', 'm0l2iover']
	}
}
]
