

var MENU_POS = {
	'height'     : [17, 20],
	'width'      : [80, 145],
	'block_top'  : [117, 25],
	'block_left' : [170, 0],
	'top'        : [0, 22],
	'left'       : [70, 0],
	'hide_delay' : [300, 300, 300, 300],
	'expd_delay' : [300, 300, 300, 300],
	'pixel_path' : 'pixel.gif'
};

/*var MENU_POS = new Array();
	// A. Item's width in pixels 
	MENU_POS['width'] = [100, 130, 160, 190, 220];
	// B. Item's height in pixels
	MENU_POS['height'] = [25, 25, 25, 25, 25];
	// C. Horizontal Offset between the items within level in pixels
	MENU_POS['left'] = [101, 0, 0, 0, 0];
	// D. Vertical Offset between the items within level in pixels
	MENU_POS['top'] = [0, 26, 26, 26, 26];
	// E. Horizontal Offset between adjacent levels* in pixels
	MENU_POS['block_left'] = [5, 0, 120, 140, 160, 180];
	// F. Vertical Offset between adjacent levels* in pixels
	MENU_POS['block_top'] = [50, 26, 10, 10, 10];
	// Time delay in milliseconds before menu collapses after mouse pointer left all items**
	MENU_POS['hide_delay'] = [200, 200, 200, 200, 200];
	// Path to transparent gif 1x1 px as it appears in src attribute of <img> tag
	MENU_POS['pixel_path'] = 'pixel.gif';
	// Horizontal menu alignment - (left, center, right) ***
	MENU_POS['align'] = 'center';
	// Vertical menu alignment - (top, center, bottom) ****
	MENU_POS['valign'] = 'top';
	// Static positioning configuration - (none, vertical, horizontal, both) ****
	MENU_POS['scroll'] = 'none';

*/