var MENU1_POS = [
// Level 0 block configuration
{
	// Item's height in pixels
	'height'     : 15,
	// Item's width in pixels
	'width'      : 107,
	// if Block Orientation is vertical
	'vertical'   : false,
	// Block outing table parameters:
	// [cellpadding, cellspacing, border]
	'table'      : [0, 0, 0],
	// Time Delay in milliseconds before o_block block expands
	// after mouse pointer overs an item
	'expd_delay' : 150,
	// Time Delay in milliseconds before menu collapses after mouse
	// pointer leafs all items
	'hide_delay' : 3000,
	// Style class names for the level
	'css' : {
		// Block outing table class
		'table' : 'mtable',
		// Item outer tag style class for all item states or
		// classes for [<default state>, <hovered state>, <clicked state>]
		'outer' :  ['mouter', 'mover', 'mdown'],
		// Item inner tag style class for all item states or
		// classes for [<default state>, <hovered state>, <clicked state>]
		'inner' :  'minner'
	}
},
// Level 1 block configuration
{
	// Item's height in pixels
	'height'     : 20,
	'width'     : 90,
	
	// Vertical Offset between adjacent levels in pixels
	'block_top'  : 18,
	// Horizontal Offset between adjacent levels in pixels
	'block_left' : 0,
	// block behaviour if single frame:	
	// 1 - shift to the edge, 2 - flip relatively to left upper corner
	'wise_pos'   : 0,
	'vertical'   : false,
	// level shadow scope settings
	'shadow' : false,
	'opacity' : 100,
	// Style class names for the level
	'css' : {
		// Block outing table class
		'table' : 'm1table2',
		// Item outer tag style class for all item states or
		// classes for [<default state>, <hovered state>, <clicked state>]
		'outer' : ['m1out2', 'm1over2', 'm1down2'],
		// Item inner tag style class for all item states or
		// classes for [<default state>, <hovered state>, <clicked state>]
		'inner' : 'm1inner2'
	}
}
]

/* Product Menu template structure */
var MENU2_POS = [
	{
		'width': 200,
		'height': 25,
		'hide_delay': 1000,
		'expd_delay': 200,
		'opacity': 100,
		'vertical': true,
		'table': [0,1,0],
		'css': {
			'table': 'prodtab0',
			'outer': ['prodout0','prodout01'],
			'inner': 'prodtext0'
		}
	},
	{
		'width': 130,
		'block_left': 150,
		'block_top': 25,
		'hide_delay': 1000,
		'vertical': true,
		'css': {
			'table': 'prodtab1',
			'outer': ['prodout1','prodout11'],
			'inner': ['prodtext1','prodtext11']
		}
	}
];

/* Cart Menu template structure */
var MENU3_POS = [
	{
		'width': 80,
		'height': 20,
		'hide_delay': 200,
		'expd_delay': 200,
		'vertical': true,
		'table': [0,1,0],
		'css': {
			'table': 'carttab',
			'outer': ['cartout1','cartout11'],
			'inner': ['cartext1','cartext11']
		}
	}
];

