/*
  --- 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 BLUE_TOPMENU_POS = [
{
	// item sizes
	'height': 20,
	'width': 140,
	// 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': 60,
	'block_left': 11,
	// offsets between items of the same level
	'top': 0,
	'left': 139,
	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	'hide_delay': 200,
	'expd_delay': 200,
	'css' : {
		'inner' : ['biout', 'biover'],
		'outer' : ['boout', 'boover']
	}
},
{
	'block_top': 20,
	'block_left': 0,
	'top': 21,
	'left': 0,
	'css' : {
		'inner' : ['biout', 'biover'],
		'outer' : ['boout', 'boover']
	}
},
{
	'block_top': 10,
	'block_left': 120,
	'css' : {
		'inner' : ['biout', 'biover'],
		'outer' : ['boout', 'boover']
	}
}
];


var GREEN_TOPMENU_POS = [
{
	// item sizes
	'height': 20,
	'width': 140,
	// 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': 60,
	'block_left': 160,
	// offsets between items of the same level
	'top': 0,
	'left': 139,
	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	'hide_delay': 200,
	'expd_delay': 200,
	'css' : {
		'inner' : ['giout', 'giover'],
		'outer' : ['goout', 'goover']
	}
},
{
	'block_top': 20,
	'block_left': 0,
	'top': 21,
	'left': 0,
	'css' : {
		'inner' : ['giout', 'giover'],
		'outer' : ['goout', 'goover']
	}
},
{
	'block_top': 10,
	'block_left': 120,
	'css' : {
		'inner' : ['giout', 'giover'],
		'outer' : ['goout', 'goover']
	}
}
];


var YELLOW_TOPMENU_POS = [
{
	// item sizes
	'height': 20,
	'width': 140,
	// 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': 60,
	'block_left': 309,
	// offsets between items of the same level
	'top': 0,
	'left': 139,
	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	'hide_delay': 200,
	'expd_delay': 200,
	'css' : {
		'inner' : ['yiout', 'yiover'],
		'outer' : ['yoout', 'yoover']
	}
},
{
	'block_top': 20,
	'block_left': 0,
	'top': 21,
	'left': 0,
	'css' : {
		'inner' : ['yiout', 'yiover'],
		'outer' : ['yoout', 'yoover']
	}
},
{
	'block_top': 10,
	'block_left': 120,
	'css' : {
		'inner' : ['yiout', 'yiover'],
		'outer' : ['yoout', 'yoover']
	}
}
];


var BLUE_GUIDE_TOPMENU_POS = [
{
	// item sizes
	'height': 20,
	'width': 140,
	// 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': 60,
	'block_left': 458,
	'css' : {
		'inner' : ['biout', 'biover'],
		'outer' : ['boout', 'boover']
	}
}
];

var BLUE_MILL_TOPMENU_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': 60,
	'block_left': 607,
	'css' : {
		'inner' : ['biout', 'biover'],
		'outer' : ['boout', 'boover']
	}
}
];

var BLUE_DEF_TOPMENU_POS = [
{
	// item sizes
	'height': 20,
	'width': 160,
	// 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': 60,
	'block_left': 735,
	'css' : {
		'inner' : ['biout', 'biover'],
		'outer' : ['boout', 'boover']
	}
}
];

/* **************** */
/* CREATE THE MENUS */
/* **************** */
new menu (BLUE_TOPMENU_ITEMS, BLUE_TOPMENU_POS);
new menu (GREEN_TOPMENU_ITEMS, GREEN_TOPMENU_POS);
new menu (YELLOW_TOPMENU_ITEMS, YELLOW_TOPMENU_POS);
new menu (BLUE_GUIDE_TOPMENU_ITEMS, BLUE_GUIDE_TOPMENU_POS);
new menu (BLUE_MILL_TOPMENU_ITEMS, BLUE_MILL_TOPMENU_POS);
new menu (BLUE_DEF_TOPMENU_ITEMS, BLUE_DEF_TOPMENU_POS);

