// JavaScript Document
// these are the names of the directories 
// change the values (in quotes) to the main menu items--make sure you list them in order
var menuItem = new Array();
menuItem[0] = "home"
menuItem[1] = "people"
menuItem[2] = "research"
menuItem[3] = "teaching"
menuItem[4] = "facilities"
menuItem[5] = "publications"
menuItem[6] = "pictures"
menuItem[7] = "contact"

// for any of the above items that have a "sub" menu, enter those labels here
// you should put the menuItem number in the first box then number the second box beginning
// with zero
// for example, if people has a submenu of 2 items, we would enter
// menuItem[1][0] = "value 1"
// menuItem[1][1] = "value 2"

// menuItem[1][0] = "Meigan Aronson|people/aronson.html";
// menuItem[1][1] = "Kerry Colligan|people/colligan.html";

// the color of the menu highlighter
menuHighlightColor = "#c0c0c0"

// the color specified in main.css that is the background color shown when the mouse rolls over
// a menu item
menuRollOverColor = "#999965" // see A.menu:hover
