// level scope settins structure

var MENU_TPL = [
// root level configuration (level 0)
{
	'postype'    : 'relative',

	// item sizes
	'height': 37,
	'width': 125,

	// absolute position of the menu on the page (in pixels)
	// with centered content use Tigra Menu PRO or Tigra Menu GOLD
	'block_top':  7,
	'block_left': 0,

	// offsets between items of the same level (in pixels)
	'top':  0,
	'left': 0,
	// time delay before menu is hidden after cursor left the menu (in milliseconds)
	'hide_delay': 0,
	// submenu expand delay after the rollover of the parent 
	'expd_delay': 600,
	// names of the CSS classes for the menu elements in different states
	// tag: [normal, hover, mousedown, selected]
	'css' : {
		'outer' : ['m0l0oout', 'm0l0oover', 'm0l0odown', 'm0l0oselect'],
		'inner' : ['m0l0iout', 'm0l0iover', 'm0l0idown', 'm0l0iselect']
	}
},
// sub-menus configuration (level 1)
// any omitted parameters are inherited from parent level
{
	'postype'    : 'relative',

	'height': 23,
	'width': 170,
	// position of the submenu relative to top left corner of the parent item
	'block_top': 37,
	'block_left': 75,
	'top': 0,
	'left': 140,
	'css' : {
		'outer' : ['m0l1oout', 'm0l1oover', 'm0l1odown'],
		'inner' : ['m0l1iout', 'm0l1iover', 'm0l1idown']
	}
},
// sub-sub-menus configuration (level 2)
{
	'block_top': 5,
	'block_left': 160
}
// the depth of the menu is not limited
// make sure there is no comma after the last element
];

// level scope settins structure
var MENU_TPL_SUB = [
// root level configuration (level 0)
{
	'postype'    : 'relative',

	// item sizes
	'height': 30,
	'width': 135,
	// absolute position of the menu on the page (in pixels)
	// with centered content use Tigra Menu PRO or Tigra Menu GOLD
	'block_top':  0, // Gets set depending on height of main menu
	'block_left': 125,
	// offsets between items of the same level (in pixels)
	'top':  -30,
	'left': 133,
	// time delay before menu is hidden after cursor left the menu (in milliseconds)
	'hide_delay': 0,
	// 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, selected]
	'css' : {
		'outer' : ['m020oout', 'm020oover', 'm020odown', 'm020oselect'],
		'inner' : ['m020iout', 'm020iover', 'm020idown', 'm020iselect']
	}
}
];

// level scope settins structure
var MENU_TPL_INNER = [
{
	'postype'    : 'relative',

	'height': 24,
	'width': 135,
	// absolute position of the menu
	'block_top': 10,
	'block_left': 0,
	'top': -24,
	'left': 135,
	'css' : {
		'outer' : ['mInner0oout', 'mInner0oover', 'mInner0odown', 'mInner0oselect'],
		'inner' : ['mInner0iout', 'mInner0iover', 'mInner0idown', 'mInner0iselect']
	}
}
];

// level scope settins structure
var MENU_TPL_MYCOOL2CARE = [
// root level configuration (level 0)
{
	'postype'    : 'relative',

	// item sizes
	'height': 35,
	'width': 120,

	// absolute position of the menu on the page (in pixels)
	// with centered content use Tigra Menu PRO or Tigra Menu GOLD
	'block_top':  -50,
	'block_left': 0,

	// offsets between items of the same level (in pixels)
	'top':  0,
	'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': 600,
	// names of the CSS classes for the menu elements in different states
	// tag: [normal, hover, mousedown, selected]
	'css' : {
		'outer' : ['m0l0oout', 'm0l0oover', 'm0l0odown', 'm0l0oselect'],
		'inner' : ['m0l0iout', 'm0l0iover', 'm0l0idown', 'm0l0iselect']
	}
}
];
