// COPYRIGHT 2009-10 © Absolute Consulting Solutions
// Unauthorized use or sale of this script is strictly prohibited by law

<!-- Begin HORIZONTAL CSS DROP MENU VER 1.50 2009

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

// USE lowercase FOR ALL OPTIONS ONLY

var showtop		= "no"		//  SHOW TOP MENU IMAGE
var showimage		= "yes"		//  SHOW BOTTOM MENU IMAGE


document.write('<div id="menulocation" class="printhide">');
   if (showtop == "yes") {
document.write('<img src="images/menu-top.jpg" width="150" height="125" class="menutop"></a><br>');
}
document.write('<table cellpadding="0" cellspacing="0" border="0" width="150"><tr><td class="topmargin">');
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="#" class="parentM">Company</a>');
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="../company/index.html">About ACS</a></li>');
document.write('      <li><a href="../company/what.html">What We Do</a></li>');
document.write('      <li><a href="../company/expect.html">What You Can Expect</a></li>');
document.write('      <li><a href="../company/differ.html">What Makes Us Different</a></li>');
document.write('      <li><a href="../company/sdvosb.html">SDVOSB</a></li>');
document.write('      <li><a href="../company/mcccvip.html">Veteran Institute for Procurement (VIP) Graduate</a></li>');
document.write('      <li><a href="../company/news.html">Press Releases/News</a></li>');
document.write('    </ul>');
document.write('  </li>');

document.write('  <li class="menuT"><a href="#" class="parentM">Approach</a>'); 
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="../approach/index.html">Our Approach</a></li>');
document.write('      <li><a href="../approach/phases.html">Four Phases of Success</a></li>');
document.write('      <li><a href="../approach/strategy.html">Strategy Makes a Difference</a></li>');
document.write('    </ul>');
document.write('  </li>');

document.write('  <li class="menuT"><a href="#" class="parentM">Services</a>'); 
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="../services/index.html">Our Services</a></li>');
document.write('      <li><a href="../services/assess.html">Assessments</a></li>');
document.write('      <li><a href="../services/plan.html">Design and Plan</a></li>');
document.write('      <li><a href="../services/deploy.html">Deployment and Implementation</a></li>');
document.write('      <li><a href="../services/train.html">Training</a></li>');
document.write('      <li><a href="../services/follow.html">Support and Follow-up</a></li>');
document.write('    </ul>');
document.write('  </li>');

document.write('  <li class="menuT"><a href="#" class="parentM">Testimonials and Success Stories</a>');
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="../testimonial/index.html">Testimonials</a></li>');
document.write('      <li><a href="../success/index.html">Success Stories</a></li>');
document.write('    </ul>');
document.write('  </li>');

document.write('  <li class="menuT"><a href="../company/news.html">Press Releases/News</a></li>');

document.write('  <li class="menuT"><a href="../resource/links_bflt.html">Blog/LinkedIn/Twitter</a></li>');

document.write('  <li class="menuT"><a href="#" class="parentM">Resources</a>');
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="../resource/links_bflt.html">Blog/LinkedIn/Twitter</a></li>');
document.write('      <li><a href="../resource/links.html">Website Links</a></li>');
document.write('      <li><a href="../resource/mkt.html">Keeping in Touch</a></li>');
document.write('      <li><a href="../down/index.html">Download ACS White Papers/Presentations/Articles</a></li>');
document.write('    </ul>');
document.write('  </li>');

document.write('  <li class="menuT"><a href="#" class="parentM">Help &amp; Support</a>');
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="../site/site_map.html">Site Map</a></li>');
document.write('      <li><a href="../contact/contact.html">Contact Us</a></li>');
document.write('      <li><a href="../policy/terms.html">Terms Of Use</a></li>');
document.write('      <li><a href="../policy/privacy.html">Privacy Policy</a></li>');
document.write('    </ul>');
document.write('  </li>');

document.write('  <li class="menuT"><a href="../contact/contact.html">Contact ACS</a></li>');

document.write('  <li class="menuT"><a href="../careers/careers.html">Join Our ACS Team</a></li>');
// END LINKS //

document.write('</ul>');
document.write('</td></tr><tr><td align="center">');

// START MENU IMAGE

   if (showimage == "yes") {
document.write('<br><br><a href="../index.html"><img src="../images/menu-image.jpg" width="150" height="86" border="0" class="borders-menuimage"></a>');
}

document.write('</td></tr></table>');
document.write('</div>');

//  End -->


// 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;
