<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'

// USE lowercase FOR ALL OPTIONS ONLY

var topimage		= "no" 		//  SHOW IMAGE AT THE TOP OF THE MENU
var botimage 		= "no" 		//  SHOW IMAGE AT THE BOTTOM OF THE MENU


document.write('<DIV id="menulocation" style="z-index: 1;" class="printhide">');
document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="154"><tr><td>');
   if (topimage == "yes") 
   // menu-top-1.gif is the menu background, top bordered & both side thin bordered
  // menu-top-2.gif is the menu button background, top & right side thin bordered
   {
document.write('<img src="menu-top-1.gif" width="154" height="81" class="menu_tablerans"></a><br>');
document.write('<img src="menu-top-2.gif" width="154" height="39"></a><br>');
}
document.write('<ul id="top-nav">');


// START MENU LINKS - EDIT BELOW THIS AREA
document.write('  <li class="menu_table"><a href="aboutus.html">ABOUT US&#160;&#160;&#160;&#160;&#160;&#160;         </a>')
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="aboutus.html">ABOUT US&#160;&#160;&#160;&#160;&#160;&#160;</a></li>');
document.write('      <li><a href="mission.html">MISSION&#160;&#160;&#160;&#160;&#160;&#160;</a></li>');
document.write('      <li><a href="ethics.html">ETHICS&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</a></li>');
document.write('      <li><a href="clients.html">CLIENTS&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</a></li>');
document.write('      <li><a href="partners.html">PARTNERS&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</a></li>');
document.write('    </ul>');
document.write('  </li>');


document.write('  <li class="menu_table"><a href="team.html">MANAGEMENT TEAM</a></li>');

document.write('  <li class="menu_table"><a href="testimonials.html">TESTIMONIALS</a></li>');

document.write('  <li class="menu_table"><a href="case_studies.html">CASE STUDIES</a></li>');


document.write('  <li class="menu_table"><a href="search_process.html">SEARCH PROCESS</a>');
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="search_process.html">SEARCH PROCESS</a></li>');
document.write('      <li><a href="assessment_insights.html">ASSESSMENT INSIGHTS</a></li>');
document.write('      <li><a href="indepth_research.html">IN-DEPTH RESEARCH&#160;&#160;&#160;&#160;&#160;&#160;</a></li>');
document.write('    </ul>');
document.write('  </li>');


document.write('  <li class="menu_table"><a href="market_trends.html">MARKET TRENDS</a>');
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="market_trends.html">MARKET TRENDS INDEX</a></li>');
document.write('      <li><a href="inthepress.html">IN THE PRESS&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</a></li>');
document.write('    </ul>');
document.write('  </li>');

document.write('  <li class="menu_table"><a href="contactus.html">CONTACT US</a></li>');
// END LINKS //

document.write('</ul>');

document.write('</td></tr></table></DIV>');// END LINKS //


// COPYRIGHT 2006 © Allwebco Design Corporation
// Unauthorized use or sale of this script is strictly prohibited by law

// YOU DO NOT NEED TO EDIT BELOW THIS LINE

function IEHoverPseudo() {

	var navItems = document.getElementById("top-nav").getElementsByTagName("li");
	
	for (var i=0; i<navItems.length; i++) {
		if(navItems[i].className == "menu_table") {
			navItems[i].onmouseover=function() { this.className += " over"; }
			navItems[i].onmouseout=function() { this.className = "menu_table"; }
		}
	}

}
window.onload = IEHoverPseudo;



//  End -->