var MENU_POS0=[
// Level 0 block configuration
{
	// Item's height in pixels
	'height'     : 18,
	// Item's width in pixels
	'width'      : 70,
	// if Block Orientation is vertical
	'vertical'   : false,
	// Time Delay in milliseconds before subling block expands
	// after mouse pointer overs an item
	'expd_delay' : 300,
	// Style class names for the level
	'css' : {
		// Block outing table class
		'table' : 'm0table0',
		// Item inner tag style class for all item states or
		// classes for [<default state>, <hovered state>, <clicked state>]
		'inner' : ['m0mouti', 'm0moveri'],
		// Item outer tag style class for all item states or
		// classes for [<default state>, <hovered state>, <clicked state>]
		'outer' : 'm0outer'
	}
},
// Level 1 block configuration
{
	'height' : 25,
	     // Vertical size of an item in a submenu block, pixels
	'width' : 100, 
	     // Horizontal size of an item in a submenu block, pixels
	'table' : [0, 1, 0], 
	'block_top' : 18,
	     // Vertical offset of the upper left corner of a block relatively to the upper
    	 //left corner of the parent item, in pixels. If is set for root level 
	     //(the one with index 0)makes the menu to be positioned in absolute way.
	'block_left' : 0, 
	    // block behaviour if single frame:	
	    // 1 - shift to the edge, 2 - flip relatively to left upper corner
	'wise_pos' : 1, 
	    //An index of a behavior type of a submenu block if crossing a 
		//browser window border. Is not taken into account for root level (the one with index 0).
		//0 - do nothing
		//1 - shift a submenu block toward the window area to fit it
		//2 - flip a submenu block relatively to its left upper corner toward the window area
	'vertical'   : true,
    	// Time Delay in milliseconds before menu collapses after mouse
	    // pointer leafs all items
	'hide_delay' : 275,
	    //A time delay between moments of mouse pointer goes from above an item and of 
		//corresponding submenu block collapsing. Menu items may have some spacing
		//between so the delay is applied before menu collapses after mouse pointer 
		//left the item. The bigger distances the more delay may be required.
		//Is not taken into account for root level (the one with index 0)
	'expd_delay' : 300, 
	    //A time delay between moments of mouse pointer goes over an item and
		//of corresponding submenu block expanding. In most cases there is no need
		//to expand all blocks whose parent items a mouse pointer goes over, but only
		//the last one. So this parameter will be useful. Makes an effect for all but
		//the most subling level submenu blocks.
		//If less than 0 sub-menus are expanded on click
	'transition' : [null, null, 6, 0.4],
	    //A JavaScript array for control of transition effects:
		//[<on block expand transition effect>, <on block collapse transition effect>]
		//Is not taken into account for root level (the one with index 0)
	'opacity' : 100,  
	    //A percentage value of menu blocks opacity
	'css' : { 
		'table' : 'm0table1',
		'outer' : 'm0outer',
		'inner' : ['m0mouti', 'm0moveri']
		 //An associative JavaScript array for defining item styles
		//table - A style class for an outer table of a submenu block
		//outer - A style class(es) for an outer tag for each state of an item.
        //inner - A style class(es) for an inner tag for each state of an item.
	}
},
// Level 2 block configuration
{
	'width'      : 100,
	'block_top'  : 0,
	// if negative, forces the block to expand leftward
	'left'       : 1,
	'css' : {
		'table' : 'm0table2',
		'outer' : '',
		'inner' : ['m0mouti', 'm0moveri']
	}
},
// Level 3 block configuration
{
	'width' : 100
}
//Subling level configurations are inherited from level 3
]

