// *****************************************************************************// **                                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=location.pathname;// 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='mnu_open.gif';			// open image namelev1OpHeight='10';				// image heightlev1OpWidth='10';				// image widthlev1ClosName='mnu_closed.gif';		// closed image namelev1ClosHeight='10';			// image heightlev1ClosWidth='10';			// 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='mnu_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='no';		// insert yes or no// set bullet character for level 2 bulletsbullet = '&#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                             **// *****************************************************************************// About Us Menuif (page=='abt') {thisMenu = new Array();thisMenu[0] = new subMenu('Overview','aboutus.htm');thisMenu[1] = new subMenu('Principal Consultants','about_mgmt.htm');thisMenu[2] = new subMenu('Sylverlane Clients','clients.htm');thisMenu[3] = new subMenu('Investor Relations','investor.htm');thisMenu[4] = new subMenu('News And Events','news.htm');}// Services Menuif (page=='srv') {thisMenu = new Array();thisMenu[0] = new subMenu('Overview','services.htm');thisMenu[1] = new subMenu('Capacity Planning','srv_capacity.htm');thisMenu[2] = new subMenu('Consolidation Planning','srv_consolidation.htm');thisMenu[3] = new subMenu('Application Sizing','srv_application.htm');thisMenu[4] = new subMenu('Service level Assurance','srv_sla.htm');thisMenu[5] = new subMenu('Workload Management','srv_workload.htm');thisMenu[6] = new subMenu('Performance','srv_performance.htm');}// Resources Menuif (page=='res') {thisMenu = new Array();thisMenu[0] = new subMenu('Whitepapers','downloads.htm');thisMenu[1] = new subMenu('Downloads','downloads.htm');thisMenu[2] = new subMenu('Industry links','clients.htm#Indlink');thisMenu[3] = new subMenu('Search Sylverlane','http://search.freefind.com/find.html?id=41918200');thisMenu[4] = new subMenu('Site Map','http://search.freefind.com/find.html?id=41918200&m=0&p=0');}// Contact Us Menuif (page=='cnt') {thisMenu = new Array();thisMenu[0] = new subMenu('Contact Us','contact.htm');thisMenu[1] = new subMenu('Career','careers.htm');}