// *****************************************************************************
// **                                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='';

// get the filename
var pathfrag = document.location.pathname;
var frag = pathfrag.split('/');
frag.reverse();
thisPage=frag[0];

// 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=dirname+'img/';

// do you want to use images for the category bullets?
lev1img='yes';					// insert yes or no

// give image names and dimensions
lev1OpName='v_green_arrow.gif';			// open image name
lev1OpHeight='4';				// image height
lev1OpWidth='9';				// image width

lev1ClosName='h_grey_arrow.gif';		// closed image name
lev1ClosHeight='7';			// image height
lev1ClosWidth='9';				// 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='';			// image name
lev2Height='';				// image height
lev2Width='';					// 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 = '';

// base target - the frame that the links are targetting
base = '';

// *****************************************************************************
// **                             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                             **
// *****************************************************************************

// Securities
if (page=='securities') {
thisMenu = new Array();

}

// Investment Banking
if (page=='inv_bank') {
thisMenu = new Array();
thisMenu[0] = new subMenu('&nbsp;&nbsp;&nbsp;Industry and Regional<Br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Coverage',dirname+'invest_bank/industry_regional_coverage.html?page=inv_bank');
thisMenu[1] = new subMenu('&nbsp;&nbsp;&nbsp;Product Overview<Br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Services',dirname+'invest_bank/product_overview.html?page=inv_bank');
thisMenu[2] = new subMenu('&nbsp;&nbsp;&nbsp;Real Estate Business',dirname+'invest_bank/real_estate.html?page=inv_bank');
}

// Asset Management
if (page=='asset') {
thisMenu = new Array();
}

// Research
if (page=='research') {
thisMenu = new Array();

}

// Services for small U.S. businesses
if (page=='services') {
thisMenu = new Array();
}


