/* Tigra Menu template structure */
var MENU_TPL = [
/* Root Menu Template - root level configuration (level 0)*/
	{
		// item sizes
		'width': 79,
		'height': 28,
		// offsets between items of the same level (in pixels)
		'left': 80,
		'top': 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': 200,
		// names of the CSS classes for the menu elements in different states
		// tag: [normal, hover, mousedown]
		'css': {
			'inner': 'TM0i0',
			'outer': ['TM0o0','TM0o1']
		},
	// absolute position of the menu on the page (in pixels)	
	// with centered content use Tigra Menu PRO or Tigra Menu GOLD
		'block_left': 38,
		'block_top': 87
	},
/* Sub-Menu Template 
	 sub-menus configuration (level 1)
	 any omitted parameters are inherited from parent level
*/
	{
		'width': 120,
		// position of the submenu relative to top left corner of the parent item
		'block_left': 0,
		'block_top': 25,
		'left': 0,
		'top': 23,
		'css': {
			'inner': 'TM0i0',
			'outer': ['TM1o0','TM1o1']
		}
	},
/* sub-sub-menus configuration (level 2) */
	{
		'block_top': 5,
		'block_left': 120
	}
// the depth of the menu is not limited
// make sure there is no comma after the last element
];
