// ArrayLinks.js
// Author: Joel Richards joelr@j-3media
// Creates Drop Down menu arrays for child categories.
//Arrays are printed in the order in which categories are displayed
//hence, if a top level category has a display order of 1, it will be 
// the first array element
//array 1
var menu1 = new Array();
menu1[0] = '<a href="vision.html">Our Vision</a>';
menu1[1] = '<a href="plans.html">Site Plans</a>';
menu1[2] = '<a href="exhibits.html">Exhibits</a>';
//array 2
// for each dropdown menu you wish to define, define a new array like menu 1
