/*
  --- 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.
*/
var MENU_POS1 = new Array();
	// A. Item's width in pixels 
	MENU_POS1['width'] = [138, 250, 200, 190, 220];
	// B. Item's height in pixels
	MENU_POS1['height'] = [24, 25, 25, 25, 25];
	// C. Horizontal Offset between the items within level in pixels
	MENU_POS1['left'] = [0, 0, 0, 0, 0];
	// D. Vertical Offset between the items within level in pixels
	MENU_POS1['top'] = [25, 24, 0, 0, 0];
	// E. Horizontal Offset between adjacent levels* in pixels
	MENU_POS1['block_left'] = [-210, 138, 200, 140, 160, 180];
	// F. Vertical Offset between adjacent levels* in pixels
	MENU_POS1['block_top'] = [200, 0, 10, 10, 10];
	// Time delay in milliseconds before menu collapses after mouse pointer left all items**
	MENU_POS1['hide_delay'] = [200, 200, 200, 200, 200];
	// Path to transparent gif 1x1 px as it appears in src attribute of <img> tag
	MENU_POS1['pixel_path'] = 'pixel.gif';
	// Horizontal menu alignment - (left, center, right) ***
	MENU_POS1['align'] = 'center';
	// Vertical menu alignment - (top, center, bottom) ****
	MENU_POS1['valign'] = 'top';
	// Static positioning configuration - (none, vertical, horizontal, both) ****
	MENU_POS1['scroll'] = 'none';

	
