/*
  --- menu level scope settins structure --- 
  note that this structure has changed its format since previous version.
  Now this structure has the same layout as Tigra Menu GOLD.
  Format description can be found in product documentation.
*/

if(navigator.appVersion.indexOf('Mac')>-1)
{
	if(navigator.userAgent.indexOf('Safari')>-1)
	{
		// this section ONLY for Mac Safari
		var MENU_POS = [
		{
			// item sizes
			'height': 92,
			'width': 89,
			'vertical': false,
			'hide_delay': 50,
			'expd_delay': 1,
			'table':[0,3,0],
			'css' : {
				'table' :'',
				'outer' : ['m0l0oout', 'm0l0oover'],
				'inner' : ''
			},
			'pixel':'./pixel.gif'
		},{
			'height': 24,
			'width': 200,
			'block_top': -3,
			'block_left': 3,
			'vertical': true,
			'table':[0,0,0],
			'css' : {
				'table' :'',
				'outer' : ['m0l1oout', 'm0l1oover'],
				'inner' : 'm0l1iout'
		
			}
		}]
	} // end if safari
	else if(navigator.userAgent.indexOf('MSIE')>-1)
	{
		
	// Mac IE
		var MENU_POS = [
		{
			// item sizes
			'height': 92,
			'width': 89,
			'vertical': false,
			'hide_delay': 50,
			'expd_delay': 1,
			'table':[0,3,0],
			'css' : {
				'table' :'',
				'outer' : ['m0l0oout', 'm0l0oover'],
				'inner' : ''
			},
			'pixel':'./pixel.gif'
		},{
			'height': 24,
			'width': 200,
			'block_top': 0,
			'block_left': 6,
			'vertical': true,
			'table':[0,0,0],
			'css' : {
				'table' :'',
				'outer' : ['m0l1oout', 'm0l1oover'],
				'inner' : 'm0l1iout'
		
			}
		}]
		
	} // if otther mac browser
	else
	{
		// any other mac browser IE/Firefox
		var MENU_POS = [
		{
			// item sizes
			'height': 92,
			'width': 89,
			'vertical': false,
			'hide_delay': 50,
			'expd_delay': 1,
			'table':[0,3,0],
			'css' : {
				'table' :'',
				'outer' : ['m0l0oout', 'm0l0oover'],
				'inner' : ''
			},
			'pixel':'./pixel.gif'
		},{
			'height': 24,
			'width': 200,
			'block_top': -3,
			'block_left': 3,
			'vertical': true,
			'table':[0,0,0],
			'css' : {
				'table' :'',
				'outer' : ['m0l1oout', 'm0l1oover'],
				'inner' : 'm0l1iout'
		
			}
		}]
	} // if otther mac than safari

}
else
{
	// PC browsers
	var MENU_POS = [
	{
		// item sizes
		'height': 92,
		'width': 89,
		'vertical': false,
		'hide_delay': 50,
		'expd_delay': 1,
		'table':[0,3,0],
		'css' : {
			'table' :'',
			'outer' : ['m0l0oout', 'm0l0oover'],
			'inner' : ''
		},
		'pixel':'./pixel.gif'
	},{
		'height': 24,
		'width': 200,
		'block_top': -3,
		'block_left': 3,
		'vertical': true,
		'table':[0,0,0],
		'css' : {
			'table' :'',
			'outer' : ['m0l1oout', 'm0l1oover'],
			'inner' : 'm0l1iout'
	
		}
	}]

}