<!--
// *****************************************************************************
// **      JavaScript Tree Menu Copyright Net Explorers Ltd 2001              **
// *****************************************************************************

// *****************************************************************************
// **                                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='';

// the filename of the page the menu appears in eg 'menu.html'
thisPage='index.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/';

// do you want to use images for the category bullets?
lev1img='yes';					// insert yes or no

// give image names and dimensions
lev1OpName='closed.gif';			// open image name
lev1OpHeight='9';				// image height
lev1OpWidth='4';				// image width

lev1ClosName='closed.gif';		// closed image name
lev1ClosHeight='9';			// image height
lev1ClosWidth='4';				// image width

// do you want to use images for the sub-category bullets?
lev2img='yes';		// insert yes or no

// give image names and dimensions
lev2Name='bullet.gif';			// image name
lev2Height='7';				// image height
lev2Width='16';					// image width

// do you want to use a text character for the sub-category bullets?
lev2Char='no';		// insert yes or no

// set bullet character for level 2 bullets
bullet = '&#155; ';

// base target - the frame that the links are targetting
base = 'directions';

// *****************************************************************************
// **                             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                             **
// *****************************************************************************

// Bikes
if (page=='driving') {
thisMenu = new Array();
thisMenu[0] = new subMenu('From Lower Northeast, Cottman Ave., Tacony Bridge','drive-lo_ne_cottman_tacony.html');
thisMenu[1] = new subMenu('From Upper Northeast','drive-up_ne.html');
thisMenu[2] = new subMenu('From City Line Ave. & Schuylkill Expressway','drive-cityline_skriverexp.html');
thisMenu[3] = new subMenu('From Rt. 309 & Penna. Turnpike','drive-rt309_pennatp.html');
thisMenu[4] = new subMenu('From Eastern Bucks','drive-eastbucks.html');
thisMenu[5] = new subMenu('From Warrington, Doylestown, New Hope, etc.','drive-warring_doyles_newh.html');
thisMenu[6] = new subMenu('From Benjamin Franklin / Walt Whitman Bridges','drive-benfrank_waltwhit.html');
thisMenu[7] = new subMenu('From Delaware/Chester County, Wilmington & South','drive-delaw_chest_wilming_so.html');
thisMenu[8] = new subMenu('From Center City Philadelphia','drive-ccphila.html');
}

// Bikes
if (page=='public') {
thisMenu = new Array();
}
//-->
