// --------------------------------------------------------------------------------
// Horzontal Menu Settings
// --------------------------------------------------------------------------------
var hPos = [
	// Level 0
	{
		// item sizes
		'width': 110,
		'height': 25,
		
		// horizontal direction of sub level block: left = horizontal, top = vertical
		'left': null,
		'top': null,
		
		// block orientation: true = vertical, false = horizontal
		'vertical': false,
		
		// block behaviour if single frame: shift to the edge
		'wise_pos': 0,
		
		// table parameters: [cellpadding, cellspacing, border, alignment]
		'table': [0, 0, 0, 'center'],
		
		// time in milliseconds before menu is hidden after cursor has gone out of any items
		'hide_delay': 350,
		'expd_delay': 100,
		
		// style
		'css' : {
			'table': 'm0table',
			'inner': 'm0inner',
			'outer': ['m0mouto', 'm0movero', 'm0mdowno']
		}
	},
	
	// Level 1
	{
		// menu block offset from the parent
		'block_top': 24,
		'block_left': -1,
		
		// item sizes
		'width': 175,
		
		// block orientation: true = vertical, false = horizontal
		'vertical': true,
		
		// table parameters: [cellpadding, cellspacing, border, alignment]
		'table': [0, 1, 0, 'left'],
		
		// style
		'css' : {
			'table': 'm1table',
			'inner': 'm1inner',
			'outer': ['m1mouto', 'm1movero', 'm1mdowno']
		}
	},
	
	// Level 2
	{
		// menu block offset from the parent
		'block_top': 15,
		'block_left': 75,
		
		// item sizes
		'width': 175,
		
		// block orientation: true = vertical, false = horizontal
		'vertical': true,
		
		// style
		'css' : {
			'table': 'm1table',
			'inner': 'm1inner',
			'outer': ['m1mouto', 'm1movero', 'm1mdowno']
		}
	}
];
// Rest level configurations are inherited from level 2

// --------------------------------------------------------------------------------
// Vertical Menu Settings
// --------------------------------------------------------------------------------
var vPos = [
	// Level 0
	{
		// item sizes
		'width': 150,
		'height': 20,
		
		// horizontal direction of sub level block: left = horizontal, top = vertical
		'left': null,
		'top': null,
		
		// block orientation: true = vertical, false = horizontal
		'vertical': true,
		
		// block behaviour if single frame: shift to the edge
		'wise_pos': 0,
		
		// table parameters: [cellpadding, cellspacing, border]
		'table': [0, 0, 0],
		
		// time in milliseconds before menu is hidden after cursor has gone out of any items
		'hide_delay': 350,
		'expd_delay': 100,
		
		// style
		'css' : {
			'table': 'm0table',
			'inner': 'm0inner',
			'outer': ['m0mouto', 'm0movero', 'm0mdowno']
		}
	},
	
	// Level 1
	{
		// menu block offset from the parent
		'block_top': 15,
		'block_left': 75,
		
		// item sizes
		'width': 175,
		
		// block orientation: true = vertical, false = horizontal
		'vertical': true,
		
		// style
		'css' : {
			'table': 'm1table',
			'inner': 'm1inner',
			'outer': ['m1mouto', 'm1movero', 'm1mdowno']
		}
	}
];
// Rest level configurations are inherited from level 1
