<!-- 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		= "no"		//  SHOW BOTTOM MENU IMAGE


document.write('<div id="menulocation" class="printhide">');
   if (showtop == "yes") {
document.write('<img src="picts/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.htm">Home</a></li>');




// MENU SEPARATOR 1
document.write('<li class="menuseparator"></li>');




document.write('  <li class="menuT"><a href="about.htm">About Us</a></li>');

document.write('  <li class="menuT"><a href="services.htm">Our Services</a></li>');

document.write('  <li class="menuT"><a href="map.htm">Map &amp; Directions</a></li>');

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




// MENU SEPARATOR 2
document.write('<li class="menuseparator"></li>');




document.write('  <li class="menuT"><a href="goals.htm">Therapy Goals</a></li>');

document.write('  <li class="menuT"><a href="staff.htm" class="parentM">Meet Our Staff</a>');
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="physical.htm">Physical Therapists</a></li>');
document.write('      <li><a href="massage.htm">Massage Therapists</a></li>');
document.write('    </ul>');
document.write('  </li>');

document.write('  <li class="menuT"><a href="faq-home.htm">FAQ&#146;s</a></li>');

document.write('  <li class="menuT"><a href="insurance.htm">Insurances</a></li>');

document.write('  <li class="menuT"><a href="news.htm" class="parentM">Other Resources</a>');
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="news.htm">Company News</a></li>');
document.write('      <li><a href="PDFgallery.htm">Latest Brochures</a></li>');
document.write('      <li><a href="links.htm">Links</a></li>');
document.write('      <li><a href="tests.htm">Patient Testimonials</a></li>');
document.write('    </ul>');
document.write('  </li>');


document.write('  <li class="menuT"><a href="careers.htm">Careers</a></li>');




// MENU SEPARATOR 3
document.write('<li class="menuseparator"></li>');



// END LINKS //


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

//  End -->




// COPYRIGHT 2010 AMM ART DESIGNS
// 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 == "menuT") {
			navItems[i].onmouseover=function() { this.className += " over"; }
			navItems[i].onmouseout=function() { this.className = "menuT"; }
		}
	}

}
window.onload = IEHoverPseudo;