
function show(id) {

var d = document.getElementById(id);
	for (var i = 1; i<=2; i++) {
		if (document.getElementById('smenu'+i)) {document.getElementById('smenu'+i).style.display='none';}
	}
if (d) {d.style.display='block';}

}

var zTopNav = '<div id="atopmenuholder"><center><div id="atopmenuwidthcontroller">'
+'<dl style="width:190px;"><dt onmouseover="javascript:show();">&nbsp;</dt></dl>'
+'<dl style="width:60px;"><dt onmouseover="javascript:show();"><a href="about_us.htm">About Us</a></dt></dl>'
+'<dl style="width:90px;"><dt onmouseover="javascript:show();"><a href="our_people.htm">Our People</a></dt></dl>'
+'<dl style="width:120px;"><dt onmouseover="javascript:show();"><a href="whats_in_the_news.htm">What\'s in the News</a></dt></dl>'
+'<dl style="width:140px;"><dt onmouseover="javascript:show();"><a href="sector_experience.htm">Sector Experience</a></dt></dl>'
+'<dl style="width:80px;"><dt onmouseover="javascript:show();"><a href="credentials.htm">Credentials</a></dt></dl>'	 
+'<dl style="width:90px;"><dt onmouseover="javascript:show();"><a href="showcase.htm">Showcase</a></dt></dl>'	
+'<dl style="width:70px;"><dt onmouseover="javascript:show();"><a href="contact_us.htm">Contact Us</a></dt></dl></div></center></div>'

document.write(zTopNav);	


