/*
  --- 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 mainTableSize = 500//this tally with the css style sheet
var menuLeftPt = 10; //menu left spacing
var menuTopPt = 105; //top banner height
var totalMenuHeight =0;//total menu height, for the personal box below
var itemSpacing = 25;//spacing between menu items
var itemWidth = 80;

function expandMenuBox(){
	//menuLeftCol.style.width=menuLeftPt;
	//menu1Col.style.height = totalMenuHeight;
	//menu1Col.style.width = itemWidth;
}
function increaseHeight(){
	totalMenuHeight+=itemSpacing;
}

var MENU_POS = [
{
	// item sizes
	'height': 26,
	'width': 80,
	// 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': document.body.clientHeight - 68,
	'block_left': 5,
	// offsets between items of the same level
	//'top': itemSpacing,
	//'left': 0,
	'top': 0,
	'left': 85,
	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	'hide_delay': 200,
	'css' : {
		'outer' : ['m0l0oout', 'm0l0oover'],
		'inner' : ['m0l0iout', 'm0l0iover']
	}	
},
{
	'top': -27,
	'left': 0,
	'width': 200,
	'block_top': -28,
	'block_left': 5,
	'css' : {
		'outer' : ['m0l1oout', 'm0l1oover'],
		'inner' : ['m0l1iout', 'm0l1iover']
	}
}
];


