/* --- geometry and timing of the menu --- 
	values are the lists with parameters for different menu levels
	for this menu: [blue_level, green_level, red_level]
*/
var MENU_POS1 = new Array();
	// A. Item's width in pixels
	MENU_POS1['width'] = [125, 265, 170];
	// B. Item's height in pixels
	MENU_POS1['height'] = [25, 25, 25];
	// C. Horizontal Offset between the items within level in pixels
	MENU_POS1['left'] = [125, 0, 0];
	// D. Vertical Offset between the items within level in pixels
	MENU_POS1['top'] = [0, 26, 26];
	// E. Horizontal Offset between adjacent levels* in pixels
	MENU_POS1['block_left'] = [3, 0, 120];
	// F. Vertical Offset between adjacentt levels* in pixels
	MENU_POS1['block_top'] = [145, 26, 10];
	// Time delay in milliseconds before menu collapses after mouse pointer left all items**
	MENU_POS1['hide_delay'] = [200, 200, 200, 200, 200];


/* --- 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 = {
	// default item state when it is visible but doesn't have mouse over
	'onmouseout': [
		'color', ['#292929', '#292929', '#292929'], 
		'background', ['#ccccff', '#ccccff', '#ccccff'],
		'textDecoration', ['none', 'none', 'none'],
		'fontWeight', ['normal', 'normal', 'normal'],
	],
	// state when item has mouse over it
	'onmouseover': [
		'color', ['#fff', '#fff', '#fff'], 
		'background', ['#AFAFAF', '#AFAFAF', '#AFAFAF'],
		'textDecoration', ['underline', 'none', 'none'],
		'fontWeight', ['normal', 'bold', 'normal'],
	],
	// state when mouse button has been pressed on the item
	'onmousedown': [
		'color', ['#FFFFFF', '#fff', '#fff'], 
		'background', ['#595959', '#595959', '#595959'],
		'textDecoration', ['underline', 'none', 'none'],
		'fontWeight', ['normal', 'bold', 'normal'],
	]
};
	
