// declare array
menuData = new Array()
for (i=0; i < 7; i++) {
	menuData[i] = new Array(40)
	for (j=0; j < 20; j++) {
		menuData[i][j] = new Array(2)}}

// enter navigation data into array
/*
menuData[0][0][0]="&nbsp;Link1-1";
menuData[0][0][1]="http://www.domain.com/1-1.html";
menuData[0][1][0]="&nbsp;Link1-2";
menuData[0][1][1]="http://www.domain.com/1-2.html";
menuData[0][2][0]="&nbsp;Link1-3";
menuData[0][2][1]="http://www.domain.com/1-3.html";
menuData[0][3][0]="&nbsp;Link1-4";
menuData[0][3][1]="http://www.domain.com/1-4.html";
menuData[0][4][0]="&nbsp;Link1-5";
menuData[0][4][1]="http://www.domain.com/1-5.html";
*/

// enter navigation data into array
// About Us
menuData[1][0][0]="&nbsp;Profile";
menuData[1][0][1]="profile.html";
menuData[1][1][0]="&nbsp;<NOBR>Board of Directors</NOBR>";
menuData[1][1][1]="board.html";
menuData[1][2][0]="&nbsp;News";
menuData[1][2][1]="news.html";

// enter navigation data into array
// Team
menuData[4][0][0]="&nbsp;<NOBR>Dr. Richard Weindruch</NOBR>";
menuData[4][0][1]="weindruch.html";
menuData[4][1][0]="&nbsp;<NOBR>Dr. Tomas Prolla</NOBR>";
menuData[4][1][1]="prolla.html";

// enter navigation data into array
// Products and Services
menuData[5][0][0]="&nbsp;<NOBR>Contract Research</NOBR>";
menuData[5][0][1]="contres.html";
menuData[5][1][0]="&nbsp;<NOBR>Gene Databases</NOBR>";
menuData[5][1][1]="genedata.html";
menuData[5][2][0]="&nbsp;<NOBR>Drug Development</NOBR>";
menuData[5][2][1]="drugdev.html";

// enter navigation data into array
// Science
menuData[6][0][0]="&nbsp;Articles";
menuData[6][0][1]="articles.html";
menuData[6][1][0]="&nbsp;Patents";
menuData[6][1][1]="patents.html";

// enter navigation data into array
// Career
menuData[2][0][0]="&nbsp;<NOBR>Open Positions</NOBR>";
menuData[2][0][1]="positions.html";
menuData[2][1][0]="&nbsp;<NOBR>Living in Madison</NOBR>";
menuData[2][1][1]="madison.html";

