/* Tigra Menu template structure */var MENU_TPL = [// Level 0 block configuration{	// Item's width in pixels	'width'      : 120,	// Item's height in pixels	'height'     : 20,	// if Block Orientation is vertical	'vertical'   : false,	// Block outing table parameters:	// [cellpadding, cellspacing, border]	'table'      : [0, 1, 0],	// Time Delay in milliseconds before subling block expands	// after mouse pointer overs an item	'expd_delay' : 200,	// Style class names for the level	'opacity'    : 100,	'css' : {		// Block outing table class		'table' : 'TM0t0',		// Item inner tag style class for all item states or		// classes for [<default state>, <hovered state>, <clicked state>]		'inner' : ['TM0i0','TM0i1'],		// Item outer tag style class for all item states or		// classes for [<default state>, <hovered state>, <clicked state>]		'outer' : ['TM0o0','TM0o1']	}},// Level 1 block configuration{	'width'      : 160,	// Vertical Offset between adjacent levels in pixels	'block_top'  : 20,	// Horizontal Offset between adjacent levels in pixels	'block_left' : -1,	'vertical'   : true,	// block behaviour if single frame:		// 1 - shift to the edge, 2 - flip relatively to left upper corner	'wise_pos'   : 1,	// Time Delay in milliseconds before menu collapses after mouse	// pointer lefts all items	'hide_delay' : 200,	'css' : {		'table' : 'TM0t0',		'inner' : ['TM0i0','TM0i1'],		'outer' : ['TM0o0','TM0o1']	}},// Level 2 block configuration{	'width'      : 160,	// Vertical Offset between adjacent levels in pixels	'block_top'  : -1,	// Horizontal Offset between adjacent levels in pixels	'block_left' : 160,	'vertical'   : true,	// block behaviour if single frame:		// 1 - shift to the edge, 2 - flip relatively to left upper corner	'wise_pos'   : 1,	// Time Delay in milliseconds before menu collapses after mouse	// pointer lefts all items	'hide_delay' : 200,	'css' : {		'table' : 'TM0t0',		'inner' : ['TM0i0','TM0i1'],		'outer' : ['TM0o0','TM0o1']	}}]
