<!--

alink = new Array();
title = new Array();

alink[0] = '/the_company/index.shtml';
title[0] = 'What\'s in the name?';
alink[1] = '/the_company/competitive.shtml';
title[1] = 'Competitive Advantage';
alink[2] = '/the_company/philosophy.shtml';
title[2] = 'Philosophy';
alink[3] = '/the_company/strategy.shtml';
title[3] = 'Strategy';
alink[4] = '/the_company/areas_of_expertise.shtml';
title[4] = 'Areas of Expertise';
alink[5] = '/the_company/our_tools.shtml';
title[5] = 'Our Tools';
alink[6] = '/the_company/why_us.shtml';
title[6] = 'Why Us?';
alink[7] = '/the_company/partnerlist.shtml';
title[7] = 'Our Partners';
alink[8] = '/the_company/profile.shtml';
title[8] = 'Executive Profiles';
alink[9] = '/the_company/employment.shtml';
title[9] = 'Employment';

var alink_length = alink.length;
var apath = location.pathname;

document.writeln('<table width="161" cellpadding=0 cellspacing=0 bgcolor="#4F7E14" border=0>');
for (i = 0; i < alink_length; i++) {
	if (apath == alink[i]) { 
	document.writeln('<tr><td valign="top"><img src="/images/butt_hl.gif" width="22" height="15" border="0" name="name' + i +'"></td><td width="5">&nbsp;</td>');
	document.writeln('<td class="menu">' + title[i] + '</td></tr>');
			} else {
	document.writeln('<tr><td valign="top"><img src="/images/butt_dark.gif" width="22" height="15" border="0" name="name' + i +'"></td><td width="5">&nbsp;</td><td>');
	document.writeln('<a class="menu" href="' + alink[i] +'" onmouseover="MM_swapImage(\'name' + i +'\',\'\',\'/images/butt_hl.gif\')" onmouseout="MM_swapImgRestore()">' + title[i] + '</a></td></tr>');
	}
	document.writeln('<tr><td height="4" colspan="3"><img src="/images/1pix.gif" width="1" height="4" border="0"></td></tr>');
}

document.writeln('</table>');

//-->
