/* --- geometry and timing of the menu --- */
var MENU_POS1 = new Array();
	// item sizes for different levels of menu
	MENU_POS1['height'] = [20, 20, 20];
	MENU_POS1['width'] = [178, 178, 178];
	// 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
	
	// naar [van boven naar beneden diepte 1, diepte 2, diepte 3]
	MENU_POS1['block_top'] = [0, 23, 0];
	// naar [ links naar rechts (hele Item) diepte 1, diepte 2, diepte 3]
	MENU_POS1['block_left'] = [0, 0, 181];
	// offsets between items of the same level
	
	// ruimte tussen menu van boven naar beneden genereert trap [diepte 1, 2,3]
	MENU_POS1['top'] = [0, 20, 0];
	// ruimte tussen de menu-items links-rechts. NB. als getal gelijk is aan MENU_POS1['width'] dan is er geen cellspace, naarmate die groter wordt ontstaat er ruimte
	MENU_POS1['left'] = [181, 0, 181];
	
	
	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	MENU_POS1['hide_delay'] = [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 = new Array();

	MENU_STYLES1['onmouseout'] = [
		'color', ['#ffffff', '#000', '#000'], 
		'background', ['#aeb5b8', '#fff', '#fff'],
		'fontWeight', ['normal', 'normal', 'normal'],
		'textDecoration', ['none', 'none', 'none'],
		'textAlign' , ['left', 'left', 'left']
	];

	MENU_STYLES1['onmouseover'] = [
		'color', ['#ffffff', '#ff6600', '#ffffff'],
		'background', ['#ff6600', '#fff', '#ff6600'], 
		'fontWeight', ['normal', 'normal', 'normal'],
		'textDecoration', ['none', 'none', 'none'],
		'textAlign' , ['left', 'left', 'left']
	];

	MENU_STYLES1['onmousedown'] = [
		'color', ['#ffffff', '#ff5800', '#ff5800'], 
		'background', ['#ff6600', '#ff6600', '#ff6600'],
		'fontWeight', ['normal', 'normal', 'normal'],
		'textDecoration', ['none', 'none', 'none'],
		'textAlign' , ['left', 'left', 'left']
	];
	
	
