// level scope settins structure
var MENU_TPL1 = [
// root level configuration (level 0)
{
	// item sizes
	'height': 28,
	'width': 170,
	// absolute position of the menu on the page (in pixels)
	// with centered content use Tigra Menu PRO or Tigra Menu GOLD
	'block_top':  190,
	'block_left': 20,
	// offsets between items of the same level (in pixels)
	'top':  28,
	'left': 0,
	// time delay before menu is hidden after cursor left the menu (in milliseconds)
	'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_v', 'm0l0oover_v'],
		'inner' : ['m0l0iout_v', 'm0l0iover_v']
	}
},
// sub-menus configuration (level 1)
// any omitted parameters are inherited from parent level
{
	'height': 24,
	'width': 100,
		'top':  24,
	// position of the submenu relative to top left corner of the parent item
	'block_top':  10,
	'block_left': 77,
	'css' : {
		'outer' : ['m0l1oout_v', 'm0l1oover_v'],
		'inner' : ['m0l1iout_v', 'm0l1iover_v']
	}
},

// the depth of the menu is not limited
// make sure there is no comma after the last element
];

