// level scope settins structure
var MENU_POS = [
// root level configuration (level 0)
{
	// item sizes
	'height': 25,
	'width': 166,
	// absolute position of the menu on the page (in pixels)
	// with centered content use Tigra Menu PRO or Tigra Menu GOLD
	'block_top': 15,
	'block_left': 0,
	// offsets between items of the same level (in pixels)
	'top': 25,
	'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': 200,
	// names of the CSS classes for the menu elements in different states
	// tag: [normal, hover, mousedown]
	/*'css' : {
		'outer' : ['m0l0oout', 'm0l0oover','m0l0oSelected'],
		'inner' : ['m0l0iout', 'm0l0iover','m0l0iSelected']
	}*/	
	'css' : {
		'outer' : [['m0l0oout','m0l0oout_selected'], ['m0l0oover','m0l0oover_selected'],['m0l0oSelected','m0l0oSelected_selected']],
		'inner' : [['m0l0iout','m0l0iout_selected'], ['m0l0iover','m0l0iover_selected'],['m0l0iSelected','m0l0iSelected_selected']]
	}	
},
// sub-menus configuration (level 1)
// any omitted parameters are inherited from parent level
{
	'width': 195,
	// position of the submenu relative to top left corner of the parent item
	'block_top': 0,
	'block_left': 167,
	'top': 25,
	'css' : {
		'outer' : [['m0l1oout','m0l1oout_selected'], ['m0l1oover','m0l1oover_selected']],
		'inner' : [['m0l1iout','m0l1iout_selected'], ['m0l1iover','m0l1iover_selected']]
	}
}
];