/* --- geometry and timing of the menu --- */
var MENU_POS1 = new Array(); 
 // A. Item's width in pixels 
MENU_POS1['width'] = [76, 160, 150, 100, 120]; 
// B. Item's height in pixels 
MENU_POS1['height'] = [25, 28, 25, 25, 25]; 
// C. Horizontal Offset between the items within level in pixels 
MENU_POS1['left'] = [75, 0, 0, 0, 0]; 
// D. Vertical Offset between the items within level in pixels 
MENU_POS1['top'] = [0, 29, 26, 26, 26]; 
// E. Horizontal Offset between adjanced levels* in pixels 
MENU_POS1['block_left'] = [125, 0, 105, 120, 100, 100]; 
// F. Vertical Offset between adjanced levels* in pixels 
MENU_POS1['block_top'] = [157, 26, 0, 0, 0]; 
// 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'; 

	
/* --- dynamic menu styles ---
note: you can add as many style properties as you wish but be not all browsers
are able to render them correctly. The only relatively safe properties are
'color' and 'background'.
*/
var MENU_STYLES1 = new Array();
	// default item state when it is visible but doesn't have mouse over
	MENU_STYLES1['onmouseout'] = [
		'color', ['#ffffff', '#000000', '#ffffff', '#000000', '#ffffff'], 
		'background', ['#39608a', 'Wheat', '#39608a', '#ffa82e', '#39608a'],
		'fontWeight', ['normal', 'normal', 'normal', 'normal', 'normal'],
		'textDecoration', ['none', 'none', 'none', 'none', 'none'],
		'textAlign', ['center', 'left', 'left', 'left', 'left'],
	];
	// state when item has mouse over it
	MENU_STYLES1['onmouseover'] = [
		'color', ['#000000', '#000000', '#000000', '#000000', '#000000'], 
		'background', ['White', 'White', 'White', 'White', 'White'],
		'fontWeight', ['bold', 'bold', 'bold', 'bold', 'bold'],
		'textDecoration', ['none', 'none', 'none', 'none', 'none'],
		'textAlign', ['center', 'center', 'center', 'center', 'center'],
	];
	// state when mouse button has been pressed on the item
	MENU_STYLES1['onmousedown'] = [
		'color', ['#ffffff', '#ffffff', '#ffffff', '#ffffff', '#ffffff'], 
		'background', ['DarkRed', 'DarkRed', 'DarkRed', 'DarkRed', 'DarkRed'],
		'fontWeight', ['bold', 'bold', 'bold', 'bold', 'bold'],
		'textDecoration', ['none', 'none', 'none', 'none', 'none'],
		'textAlign', ['center', 'center', 'center', 'center', 'center'],
	];
	
