<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'

// USE lowercase FOR ALL OPTIONS ONLY

var showimage1		= "no"		//  SHOW FIRST SIDEBAR IMAGE
var showimage2		= "no"		//  SHOW SECOND SIDEBAR IMAGE
var showtop		= "yes"		//  SHOW MENU TOP AREA

   if (showtop == "yes") {
document.write('<div id="menutop" style="z-index: 10;" class="printhide">');
document.write('<img src="picts/menu-top-1.gif" width="154" height="83" class="menutrans"><br>');
document.write('<img src="picts/menu-top-2.gif" width="154" height="39"><br>');
document.write('</div>');
}

document.write('<div id="menulocation" style="z-index: 10;">');
document.write('<table cellpadding="0" cellspacing="0" border="0" width="154"><tr><td class="printhide">');

document.write('<ul id="top-nav">');




// START MENU LINKS - EDIT BELOW THIS AREA




document.write('  <li class="menuT"><a href="index.html">Home</a></li>');


document.write('  <li class="menuT"><a href="about.htm">Company Info</a>'); 
document.write('    <ul id="sub-nav">');

document.write('      <li><a href="about.htm">Company Info</a></li>');
document.write('      <li><a href="about/mission.htm">Mission Statement</a></li>');
document.write('      <li><a href="about/client.htm">Clients We Serve</a></li>');
document.write('      <li><a href="about/careers.htm">Careers</a></li>');
document.write('      <li><a href="about/leadership.htm">Our Leadership</a></li>');
document.write('    </ul>');
document.write('  </li>');

document.write('  <li class="menuT"><a href="value.htm">Value Proposition</a></li>')


document.write('  <li class="menuT"><a href="service.htm">Services Offered</a> ');
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="service.htm">Services Offered</a></li>');
document.write('      <li><a href="diligence.htm">IT Due Diligence</a></li>');
document.write('      <li><a href="workshops.htm">M&A Technology Workshop</a></li>');
document.write('      <li><a href="merger-services.htm">Post-Merger Integration & Divesture Services</a></li>');
document.write('      <li><a href="shared-services.htm">IT Shared Services</a></li>');
document.write('      <li><a href="rollups.htm">Roll-ups</a></li>');

document.write('      <li><a href="turnarounds.htm">IT Turnarounds</a></li>');
document.write('    </ul>');
document.write('  </li>');


document.write('  <li class="menuT"><a href="approach.htm">Our Approach</a>');
document.write('    <ul id="sub-nav">');

document.write('      <li><a href="approach.htm">Our Approach</a></li>');
document.write('      <li><a href="approach/due-diligence-approach.htm">Due Diligence Approach</a></li>');
document.write('      <li><a href="approach/workshop-approach.htm">M&A Technology Workshop Approach</a></li>');
document.write('      <li><a href="approach/merger-services-approach.htm">Post-Merger Integration & Divestiture Approach</a></li>');
document.write('      <li><a href="approach/assessment-approach.htm">Technology Assessment Approach</a></li>');
document.write('    </ul>');
document.write('  </li>');


document.write('  <li class="menuT"><a href="evidence.htm">Read the Evidence</a></li>')

document.write('  <li class="menuT"><a href="contact.htm">Contact Us</a></li>')

document.write('  <li class="menuT"><a href="resources.htm">Resources</a>');
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="resources/merger-blog">M&A Blog</a></li>');
document.write('      <li><a href="resources/links.htm">Useful Links</a></li>');
document.write('    </ul>');
document.write('  </li>');

document.write('  <li class="menuT"><a href="employees/employee.htm">Employee Portal</a></li>')


document.write('    </ul>');

document.write('</td></tr><tr><td align="center">');
document.write('<br>');

// <span style="font: 12px"</span>






// END LINKS //



document.write('');
document.write('</td></tr><tr><td align="center">');


// START MENU IMAGES


   if (showimage1 == "yes") {
document.write('<br><br><a href="index.html"><img src="picts/menu-picture-1.jpg" border="0" class="borders"></a><br><br><br>');
}
   if (showimage2 == "yes") {
document.write('<a href="index.html"><img src="picts/menu-picture-2.jpg" border="0" class="borders"></a><br><br>');
}


//  End -->



document.write('</td></tr></table></DIV>');









// 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 == "menuT") {
			navItems[i].onmouseover=function() { this.className += " over"; }
			navItems[i].onmouseout=function() { this.className = "menuT"; }
		}
	}

}
window.onload = IEHoverPseudo;
