/*
  --- 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_1_POS = [

/* main menu */	
{	
	// menu item size...
	'height': 29,
	'width': 125,
	
	//  location of menu...
	//	for root level origin is upper left corner of the page
	'block_top': 0,
	'block_left': 0,
	
	// offsets between menu items...
	'top': 0,		// level
	'left': 125,	// 126 to the right of the left-hand-edge of the previous item. ie, 1 to the right of the previous item
	
	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items...
	'hide_delay': 200,
	'expd_delay': 200,
	
	// style sheet info...
	'css' : {
		'outer' : ['m0l0oout', 'm0l0oover'],
		'inner' : ['m0l0iout', 'm0l0iover']
	}
},	

/* sub-menu */
{
	// dimensions...
	'height': 24,
	'width': 123,
	
	// locations (off-set from top-left of main menu)...
	'block_top': 31,
	'block_left': 0,
	
	// off-sets between sub-menu items
	'top': 24,
	'left': 0,
	
	// style sheet...
	'css' : {
		'outer' : ['m0l1oout', 'm0l1oover'],
		'inner' : ['m0l1iout', 'm0l1iover']
	}
},	

/* sub-sub-menu */
{
	'block_top': 5,
	'block_left': 125,
	'width':340
}
]

