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

// 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.html">Home</a></li>');




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






document.write('  <li class="menuT"><a href="chatham_beach_yoga.htm" class="parentM">Chatham Beach Yoga</a>'); 
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="chatham_beach_yoga.htm">Chatham Beach Yoga</a></li>');
document.write('      <li><a href="slideshow.htm">Beach Yoga Slideshow</a></li>');
document.write('      <li><a href="directions_map.htm#beach">Directions and Map</a></li>');
document.write('    </ul>');
document.write('  </li>');

document.write('  <li class="menuT"><a href="chatham_yoga_massage_offerings.htm" class="parentM">Yoga</a>');
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="chatham_yoga.htm">Private Yoga</a></li>');
document.write('      <li><a href="chatham_qigong.htm">Yoga & Qigong Classes</a></li>');
document.write('    </ul>');
document.write('  </li>');

document.write('  <li class="menuT"><a href="chatham_qigong.htm">Class Schedule</a>');
document.write('  </li>');


document.write('  <li class="menuT"><a href="thai_massage.htm" class="parentM">Thai Massage</a>');
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="thai_massage.htm">Traditional Thai Massage</a></li>');
document.write('      <li><a href="yoga_retreats.htm">Couples Thai Massage</a></li>');
document.write('      <li><a href="slideshow3.htm">Retreat Slideshow 2008</a></li>');
document.write('      <li><a href="directions_map.htm#indoor">Directions and Map</a></li>');
document.write('    </ul>');
document.write('  </li>');


document.write('  <li class="menuT"><a href="kripalu_travel.htm">Kripalu Group Travel</a>');
document.write('  </li>');


document.write('  <li class="menuT"><a href="chatham_sailing_meditation.htm">Sailing & Meditation</a>');
document.write('  </li>');

document.write('  <li class="menuT"><a href="chatham_beach_yoga_wear.htm">Beach Yoga Wear</a>');

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

document.write('  <li class="menuT"><a href="rates.htm" class="parentM">Rates</a>');
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="rates.htm">All Rates</a></li>');
document.write('      <li><a href="paypal.htm">Pay with Paypal</a></li>');
document.write('    </ul>');
document.write('  </li>');


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


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

document.write('  <li class="menuT"><a href="links.htm">Related Links</a>');
document.write('  </li>');


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



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




// MENU SEPARATOR 3
document.write('<li class="menuseparator"></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="picts/menu-image.jpg" width="150" height="75" border="0" class="borders-menuimage"></a><br><br><br>');
}






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




//  End -->




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

}
window.onload = IEHoverPseudo;