//MenuWidth = 804
//PosicionVertical = document.getElementById("aquimenu").offsetTop;
if(navigator.appName == "Microsoft Internet Explorer")
{
PosicionHorizontal = 250;
if ((screen.width == 640) && (screen.height == 480)) 
PosicionVertical = 480;
else if ((screen.width == 800) && (screen.height == 600))
PosicionVertical = 518;
else if ((screen.width == 1024) && (screen.height == 768))
PosicionVertical = 518 ;
else PosicionVertical= 518;
}
else 
{
PosicionHorizontal = 275;
if ((screen.width == 640) && (screen.height == 480)) 
PosicionVertical = 480;
else if ((screen.width == 800) && (screen.height == 600))
PosicionVertical = 520;
else if ((screen.width == 1024) && (screen.height == 768))
PosicionVertical = 520 ;
else PosicionVertical= 520;
}


/* --- geometry and timing of the menu --- */
var MENU_POS = new Array();
	// item sizes for different levels of menu
	MENU_POS['height'] = [21, 20, 39, 20];
	MENU_POS['width'] = [156, 156, 170, 184];
	// 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_POS['block_top'] = [PosicionVertical, 21, -25, 7];
	MENU_POS['block_left'] = [0, 0, 140, 140];

	
	//MENU_POS1['block_top'] = [515, 25, 7, 7];
	//MENU_POS1['block_left'] = [174, 0, 140, 140];
	// offsets between items of the same level
	MENU_POS['top'] = [0, 20, -32, 21];
	MENU_POS['left'] = [120, 0, 0, 0];
	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	MENU_POS['hide_delay'] = [200, 200, 200, 200];

	// path to gif containing one transparent pixel
	MENU_POS['pixel_path'] = 'pixel.gif';
	MENU_POS['align'] = 'center';



	
/* --- 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', '#ffffff', '#ffffff', '#000000'], 
		'background', ['#000066', '#999999', '#003366', '#d6d6d6'],
		'fontWeight', ['normal', 'normal', 'normal' , 'normal'],
		'textDecoration', ['none', 'none', 'none' , 'none'],
	];
	// state when item has mouse over it
	MENU_STYLES1['onmouseover'] = [
		'color', ['#ffffff', '#ffffff', '#ffffff' , '#000000'], 
		'background', ['#000099', '#707070', '#001C37', '#d6d6d6'],
		'fontWeight', ['bold', 'bold', 'bold' , 'bold'],
		'textDecoration', ['underline', 'none', 'none' , 'none'],
	];
	// state when mouse button has been pressed on the item
	MENU_STYLES1['onmousedown'] = [
		'color', ['#ffffff', '#ffffff', '#ffffff', '#000000'], 
		'background', ['#024AC1', '#D1D1D1', '#00468C', '#d6d6d6'],
		'fontWeight', ['bold', 'bold', 'bold' , 'bold'],
		'textDecoration', ['underline', 'none', 'none' , 'none'],
	];
	

