/* --- geometry and timing of the menu --- */
var MENU_POS1 = new Array();
	// item sizes for different levels of menu
    MENU_POS1['height'] = [45, 50, 15]; //en la primera columa se manejan valores de alto del menu
	//alert(navigator.appName)
	if(navigator.appName == "Netscape")
		MENU_POS1['width'] = [124, 124, 124]; // tamaņo de cuadros
	else
		MENU_POS1['width'] = [126, 124, 124]; // tamaņo de cuadros
		
	// 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_POS1['block_top'] = [257, 48]; // controla  distancia del menu  hacia abajo 
	ancho = screen.width;
	if(ancho == 1280)
		ancho = 204;
	if(ancho == 1024)
		ancho = 76;
	if(ancho == 800){
		if(navigator.appName == "Netscape")
			ancho = 60;	
		else
			ancho = 4;	
	}
	MENU_POS1['block_left'] = [ancho, 0, 181];
	
	
	MENU_POS1['top'] = [0, 20, 20];
	MENU_POS1['left'] = [121, 0, 0]; //largo de menu
	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	MENU_POS1['hide_delay'] = [200, 200, 200];

var MENU_STYLES1 = new Array();
	// default item state when it is visible but doesn't have mouse over
	MENU_STYLES1['onmouseout'] = [
		'color', ['#ffffff', '#ffffff', '#ffffff'],
		'background', ['#2C4B5F', '#2C4B5F', 'none'],
		'border', ['1px solid #003366', '0px solid #003366', 'none'],
		'borderStyle', ['solid', 'solid', 'none'],
	];
	//'background', ['#2C4B5F', '#2C4B5F', '#2C4B5F'],
	// state when item has mouse over it
	MENU_STYLES1['onmouseover'] = [
		'color', ['#ffffff', '#ffffff', '#ffffff'],
		'background', ['#336699', '#336699', '#336699'],
		'border', ['none', '0px solid #336699', 'none'],
		'borderStyle', ['none', 'solid', 'solid'],
	];
		//'background', ['#336699', '#336699', '#336699'],
	// state when mouse button has been pressed on the item
	MENU_STYLES1['onmousedown'] = [
		'color', ['#ffffff', '#ffffff', '#ffffff'],
		//'background', ['url(' + cRuta + 'images/MenuFondo/fblue.GIF)', 'url(' + cRuta + 'images/MenuFondo/fblue.GIF)', 'url(' + cRuta + 'images/MenuFondo/fblue.GIF)'],
		'border', ['none', '0px solid #003366', 'none'],
		'borderStyle', ['none', 'solid', 'solid'],
	];
	//'background', ['#2C4B5F', '#2C4B5F', '#2C4B5F'],

var MP_HOME_LEFT = new Array();

	// item sizes for different levels of menu
	MP_HOME_LEFT['width'] = [121, 135, 130];//[60, 135, 130];
	MP_HOME_LEFT['height'] = [21, 21, 0];//[21, 21, 0];


	// 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
	MP_HOME_LEFT['block_top'] = [295, 10, 10];// [123, 5, 5];
	MP_HOME_LEFT['block_left'] = [100, 100, 100];//[10, 50, 50]

	// offsets between items of the same level
	MP_HOME_LEFT['top'] = [20, 20, 21];
	MP_HOME_LEFT['left'] = [0, 0, 0];

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