var MENU_POS1 = new Array();
	// item sizes for different levels of menu
	MENU_POS1['height'] = [21, 20, 20];
      	MENU_POS1['width'] = [110, 84, 40];//width of news and events
	MENU_POS1['width1'] = [109, 82, 60];//About QTC Lev1, Lev2, Lev3
	MENU_POS1['width2'] = [155, 105, 68];//width of Products and Services
	MENU_POS1['width3'] = [131, 82, 39];//careers @ QTC
   


	// 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'] = [72, 21, 0];
	
      MENU_POS1['block_left'] = [138, 1, 167];//news and events  
      MENU_POS1['block_left1'] = [124, -1, 163];//About QTC
      //     offset for left hand side of the menu
      MENU_POS1['block_left2'] = [109, -1, 209];//Products and Services
      MENU_POS1['block_left3'] = [140, -1, 163];//careers @ QTC
    

      //     offsets between items of the same level
	MENU_POS1['top'] = [0, 21, 21];
	MENU_POS1['left'] = [141, 0, 0];//news and events  
	MENU_POS1['left1'] = [125, 0, 0];//About QTC 
	MENU_POS1['left2'] = [125, 0, 0];//Products and Services
	MENU_POS1['left3'] = [125, 0, 0];//careers @ QTC
	

	//     time in milliseconds before menu is hidden after cursor has gone out
	//     of any items
	MENU_POS1['hide_delay'] = [250, 250, 250];
	
var MENU_STYLES1 = new Array();
	// default item state when it is visible but doesn't have mouse over
	MENU_STYLES1['onmouseout'] = [
		'color', ['#ffffff', '#7F8486', '#7F8486'], 
		'background', ['transparent', '#EEEFEF', '#EEEFEF'],
		'fontWeight', ['normal', 'normal', 'normal'],
		'textDecoration', ['none', 'none', 'none'],
 	];
	// state when item has mouse over it
	MENU_STYLES1['onmouseover'] = [
		'color', ['#ffffff', '#ffffff', '#ffffff'], 
		'background', ['transparent', '#0080C1', '#0080C1'],
		'fontWeight', ['normal', 'normal', 'normal'],
		'textDecoration', ['none', 'none', 'none'],  
	];
	// state when mouse button has been pressed on the item
	MENU_STYLES1['onmousedown'] = [
		'color', ['#ffffff', '#ffffff', '#ffffff'], 
		'background', ['#679BCD', '#0080C1', '#0080C1'],
		'fontWeight', ['normal', 'normal', 'normal'],
		'textDecoration', ['none', 'none', 'none'],
         	];