/* --- geometry and timing of the menu --- */
var MENU1_POS = new Array();

	// item sizes for different levels of menu
	MENU1_POS['height']     = [30, 40, 22];
	MENU1_POS['width']      = [190, 230, 150];

	// menu block offset from the origin:
	//  for root level origin is upper left corner of the page
	//  for other levels origin is upper left corner of parent item
	MENU1_POS['block_top']  = [205, 12, 10];
	MENU1_POS['block_left'] = [-320, 173, 100];

	// offsets between items of the same level
	MENU1_POS['top']        = [29, 19, 22];
	MENU1_POS['left']       = [0, 0, 0];

	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	MENU1_POS['hide_delay'] = [200, 200, 200];

	// path to gif containing one transparent pixel
	MENU1_POS['pixel_path'] = 'pixel.gif';
	MENU1_POS['align'] = 'center';


