/* --- geometry and timing of the menu --- */
var menu_posicion = new Array();
	// item sizes for different levels of menu
	menu_posicion['height'] = [14, 14, 14];
	menu_posicion['width'] = [105, 209, 96];
//	menu_posicion['width'] = [96, 191, 96];
	// 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
	menu_posicion['block_top'] = [130, 19, 0];
	menu_posicion['block_left'] = [250, 0, 96];
//	menu_posicion['block_left'] = [302, 0, 96];
	// offsets between items of the same level
	menu_posicion['top'] = [0, 15, 21];
	menu_posicion['left'] = [104, 0, 0];
	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	menu_posicion['hide_delay'] = [200, 500, 800];
	
/* --- 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_estilos = new Array();
	// default item state when it is visible but doesn't have mouse over
	menu_estilos['onmouseout'] = [
		'color', ['#FFFFFF', '#030553', '#030553'], 
		'background', ['#12128E', '#C9E4FA', '#C9E4FA'],
		'fontWeight', ['normal', 'normal', 'normal'],
		'textDecoration', ['none', 'none', 'none'],
	];
	// state when item has mouse over it
	menu_estilos['onmouseover'] = [
		'color', ['#030553', '#030553', '#030553'], 
		'background', ['#6699cc', '#6699cc', '#6699cc'],
		'fontWeight', ['normal', 'bold', 'bold'],
		'textDecoration', ['none', 'none', 'none'],
	];
	// state when mouse button has been pressed on the item
	menu_estilos['onmousedown'] = [
		'color', ['#030553', '#030553', '#030553'], 
		'background', ['#99ccff', '#99ccff', '#99ccff'],
		'fontWeight', ['normal', 'bold', 'bold'],
		'textDecoration', ['none', 'none', 'none'],
	];
	
