// level scope settins structure
var MENU_TPL = [
// root level configuration (level 0)
{
	// item sizes
	'height': 25,
	//'width': 130,
	// absolute position of the menu on the page (in pixels)
	// with centered content use Tigra Menu PRO or Tigra Menu GOLD
	'block_top':  90, // 110
	'block_left': 370,
	'block_top_firefox':  241,
	'block_left_firefox': 355,
	'block_top_Opera':  111,
	'block_top_Safari':  98,
	'block_left_Safari': 680,
	// offsets between items of the same level (in pixels)
	'top':  0,
	'left': 131,
	// time delay before menu is hidden after cursor left the menu (in milliseconds)
	'hide_delay': 100,
	// submenu expand delay after the rollover of the parent 
	'expd_delay': 100,
	// names of the CSS classes for the menu elements in different states
	// tag: [normal, hover, mousedown]
	'css' : {
		'outer' : ['m0l0oout', 'm0l0oover'],
		'inner' : ['m0l0iout', 'm0l0iover'],
		'outerSin' : ['m0l0ooutSin', 'm0l0ooverSin'],
		'innerSin' : ['m0l0ioutSin', 'm0l0ioverSin']
	}
},
// sub-menus configuration (level 1)
// any omitted parameters are inherited from parent level
{
	'height': 24,
	'width': 210,
	// position of the submenu relative to top left corner of the parent item
	'block_top': 25,
	'block_left': 0,
	'top': 23,
	'left': 0,
	'css' : {
		'outer' : ['m0l1oout', 'm0l1oover'],
		'inner' : ['m0l1iout', 'm0l1iover'],
		'outerflecha' : ['m0l1ooutflecha', 'm0l1ooverflecha'],
		'innerflecha' : ['m0l1ioutflecha', 'm0l1ioverflecha']
	}
},
// sub-sub-menus configuration (level 2)
{
	'block_top': 5,
	'block_left': 210,
	'css' : {
			'outer' : ['m0l2oout', 'm0l2oover'],
			'inner' : ['m0l2iout', 'm0l2iover'],
			'outerflecha' : ['m0l2ooutflecha', 'm0l2ooverflecha'],
			'innerflecha' : ['m0l2ioutflecha', 'm0l2ioverflecha']
	}
}
// the depth of the menu is not limited
// make sure there is no comma after the last element
];

