/* Tigra Menu template structure */
var MENU_TPL = [
{
	// Item's width in pixels
	'width'      : 213,
	// Item's height in pixels
	'height'     : 25,
	// if Block Orientation is vertical
	'vertical'   : true,	
	'table' : [0, 0, 0],
	// Time Delay in milliseconds before subling block expands
	// after mouse pointer overs an item
	'hide_delay' : 200,
	// Style class names for the level
	'css' : {
		// Block outing table class
		
		// Item inner tag style class for all item states or
		// classes for [<default state>, <hovered state>, <clicked state>]
		'inner' : ['m0iout', 'm0iover'],
		// Item outer tag style class for all item states or
		// classes for [<default state>, <hovered state>, <clicked state>]
		'outer' : ['m0oout', 'm0oover']
	}
},
// Level 1 block configuration
{
	'width'      : 250, 
	'block_left' : 216,
	'block_top' : -5,
	'table' : [0, 0, 0],
	'height'     : 25,
	'css' : {
		'inner' : ['m1iout', 'm1iover'],
		'outer' : ['m1oout', 'm1oover']
	}
},
// Level 2 block configuration
{
	'width'      : 250, 
	'block_left' : 250,
	'block_top' : 0,
	'table' : [0, 0, 0],
	'css' : {
		'inner' : ['m1iout', 'm1iover'],
		'outer' : ['m1oout', 'm1oover']
	}
}
]