// level scope settins structure
var MENU_TPL = [
// root level configuration (level 0)
{
	// item sizes
	'width': 80,
	'height': 22,
	// absolute position of the menu on the page (in pixels)
	// with centered content use Tigra Menu PRO or Tigra Menu GOLD
	'block_top': 0,
	'block_left': 0,
	// offsets between items of the same level (in pixels)
	'top': 0,
	'left': 84,
	// 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 (negative value: expand on click)
	'expd_delay': 10,
	// names of the CSS classes for the menu elements in different states
	// tag: [normal, hover, mousedown]
	'css' : {
	    'inner': 'm0l0i',
	    'outer': ['m0l0o', 'm0l0o']
	}
},
// sub-menus configuration (level 1)
// any omitted parameters are inherited from parent level
{
    'width': 150,
	'height': 22,
	// position of the submenu relative to top left corner of the parent item
	'block_top': 23,
	'block_left': 0,
	
	'top': 23,
	'left': 0,

	'css': {
	    'inner': 'm0l0i',
	    'outer': ['m0l1o', 'm0l2o']
	}
},
// sub-sub-menus configuration (level 2)
{
    'width': 150,
    'height': 22,
    // position of the submenu relative to top left corner of the parent item
    'block_top': 5,
    'block_left': 111,

    'top': 23,
    'left': 0,

    'css': {
        'inner': 'm0l0i',
        'outer': ['m0l1o', 'm0l2o']
    }
}
// the depth of the menu is not limited
// make sure there is no comma after the last element
];

