//<!-- 
/*
------------------------------------------------------------------------------
File Name: simple_menu_data.js
Company: pH2 Enterprises
Author: Phillip J. Henslee II <ph2@ph2enterprises.com> ©2002
Purpose: Contains Menu items in array
Functions: None
Date Created: January 15, 2002
Last Modified: February 2, 2002
Dependent Files: config.js, detection_lib.js, simple_menu.js
File Status: Required (Insert before simple_menu.js)
------------------------------------------------------------------------------
*/


// ** Create menu1 Array **
// -------------------------------------------------

	var menu1 = new Array();
		
	for (i=0; i < 6; i++) {
		menu1[i] = new Array(2);
	}
		
	menu1[0][0]="Locations";
	menu1[0][1]="http://www.microsoft.com/,self";
	menu1[1][0]="Investors";
	menu1[1][1]="http://www.microsoft.com/,self";
	menu1[2][0]="Careers";
	menu1[2][1]="http://www.microsoft.com/,self";
	menu1[3][0]="History";
	menu1[3][1]="http://www.microsoft.com/,self";
	menu1[4][0]="People";
	menu1[4][1]="http://www.microsoft.com/,self";
	menu1[5][0]="The Future";
	menu1[5][1]="http://www.microsoft.com/,self";
	

// <!INSERT NEW LINE!> Do not remove this line  -->














