// *****************************************************************************
// **                                SETTINGS                                 **
// *****************************************************************************

// 'linka' use this if part of the URL is the same in ALL the links
// In this example all the files are in a subfolder called 'pages'
linka='/75th/';

// the filename of the page the menu appears in eg 'menu.html'


// Do you want to use images for the category bullets?
// If so then specify the path to your images folder from the menu page
imgPath='/images/75th/';

// do you want to use images for the category bullets?
lev1img='yes';					// insert yes or no

// give image names and dimensions
lev1OpName='opened.gif';			// open image name
lev1OpHeight='8';				// image height
lev1OpWidth='7';				// image width

lev1ClosName='closed.gif';		// closed image name
lev1ClosHeight='7';			// image height
lev1ClosWidth='8';				// image width

// do you want to use images for the sub-category bullets?
lev2img='no';		// insert yes or no

// give image names and dimensions
lev2Name='bullet.gif';			// image name
lev2Height='10';				// image height
lev2Width='16';					// image width

// do you want to use a text character for the sub-category bullets?
lev2Char='yes';		// insert yes or no

// set bullet character for level 2 bullets
bullet = '&nbsp;&nbsp;&nbsp;&#155; ';

// base target - the frame that the links are targetting
base = '_self';

// *****************************************************************************
// **                             END OF SETTINGS                             **
// *****************************************************************************

// pulls 'page' variable out of URL - do not alter
	var x = 0
	page = location.search.substr(1).split("?")
	for (x=0;x<=page.length;x++) {
		eval(page)
		}
page = escape(page);
page = page.slice(7);

// do not alter this bit
function subMenu(name,linkb) {
 this.name = name;
 this.linkb = linkb;
}
document.write('<BASE target="' + base + '">');

// *****************************************************************************
// **                             BUILD MENU DATA                             **
// *****************************************************************************

// History Menu
// The ?page=his keeps the menu open after clicking on one of the links

if (page=='his') {
thisMenu = new Array();
thisMenu[0] = new subMenu('Founding, 1889-1898','founding.htm?page=his');
thisMenu[1] = new subMenu('Quest for a Home 1894-1910','quest.htm?page=his');
thisMenu[2] = new subMenu('Initial Plans, 1910-1912','plans.htm?page=his');
thisMenu[3] = new subMenu('Delays, 1912-1919','delays.htm?page=his');
thisMenu[4] = new subMenu('Construction, 1920-1926','construction.htm?page=his');
thisMenu[5] = new subMenu('Opening Day, June 2, 1927','openingday.htm?page=his');
thisMenu[6] = new subMenu('Central and Logan Circle','centrallogan.htm?page=his');
}


// Timeline Menu
if (page=='time') {
thisMenu = new Array();
}

// Architects Menu
if (page=='arch') {
thisMenu = new Array();
thisMenu[0] = new subMenu('Abele','abele.htm?page=arch');
thisMenu[1] = new subMenu('Trumbauer','trumbauer.htm?page=arch');
thisMenu[2] = new subMenu('Residential','residential.htm?page=arch');
thisMenu[3] = new subMenu('Whitemarsh','whitemarsh.htm?page=arch');
thisMenu[4] = new subMenu('Commercial','commercial.htm?page=arch');
}

// Exhibit Menu
if (page=='exhibit') {
thisMenu = new Array();
}

// Search Menu
if (page=='search') {
thisMenu = new Array();
}

// About the Site Menu
if (page=='about') {
thisMenu = new Array();
thisMenu[0] = new subMenu('Collection','collection.htm?page=about');
thisMenu[1] = new subMenu('Technical','technical.htm?page=about');
thisMenu[2] = new subMenu('Funding','funding.htm?page=about');
thisMenu[3] = new subMenu('Credits','credits.htm?page=about');
}

