/*
  --- 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 menuTop = 179;
var menuLeft = 135;
if(screen.width == 800 && screen.height == 600)
{
	menuTop = 193;
	menuLeft = 0;
}
else if(screen.width == 1024 && screen.height == 768)
{
	menuTop = 179;
	menuLeft = 93;
}
else if(screen.width == 1152 && screen.height == 864)
{
	menuLeft = 107;
	menuTop = parseInt(menuTop + 3);
}
else if(screen.width == 1600 && screen.height == 900)
{
	menuTop = 179;
	menuLeft = 180;
}
if (navigator.appName != 'Netscape')
	menuTop = parseInt(menuTop + 3);
//alert(navigator.appName);	
var MENU_POS = [
{
	// item sizes
	'width': 124,
	'height': 18,
	// 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': menuTop,
	'block_left': menuLeft,
	// offsets between items of the same level
	'top': 20,
	'left': 0,
	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	'hide_delay': 200,
	'expd_delay': -200,
	'css' : {
		'inner' : 'minner',
		'outer' : ['moout', 'moover']
	}
},
{
	'width': 180,
	'block_top': 18,
	'block_left': 10
},
{
	'block_left': 10
}
]


