<!-- Begin
// MENU VER 2.0 IE 7.0 COMPATIBLE
 

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

// USE lowercase FOR ALL OPTIONS ONLY

var showimage1		= "yes"		//  SHOW FIRST SIDEBAR IMAGE
var showimage2		= "yes"		//  SHOW SECOND SIDEBAR IMAGE
var showimage3		= "yes"		//  SHOW SECOND SIDEBAR IMAGE
var showimage4		= "yes"		//  SHOW SECOND SIDEBAR IMAGE
var linkstop 		= "yes" 		//  START LINKS AT THE VERY TOP

 
document.write('<DIV id="menulocation" style="z-index: 50;">'); 
document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="175"><tr><td>');
   if (linkstop == "no") ;document.write('  <br><br><br><br><br><br><br><br><br>');

document.write('<ul id="top-nav">');




// START MENU LINKS - EDIT BELOW THIS AREA



 
document.write('  <li class="menuT"><a href="http://www.fivemountains.org/tioh/tioh2.html">Home</a></li>');
document.write('  <li class="menuT"><a href="http://www.fivemountains.org/tioh/information.html">Resource Materials</a>');
document.write('  <li class="menuT"><a href="tioh-2009-Qualifying-Guidelines.pdf" target="_blank">Qualifying Guidelines</a>');
document.write('  <li class="menuT"><a href="events.html">Event Links</a>');  
document.write('  <li class="menuT"><a href="lifestyle-points.html"><u>Lifestyle Points - Daily Log</u></a></li>');  
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="tioh-lifestyle-log-North-HI-r2.xls" target="_blank"><img src="../tioh/picts/excel-icon.jpg" width="15" height="15" align="left" border="0">TIOH Lifestyle log North HI</a> </li>');
document.write('      <li><a href="tioh-lifestyle-log-West-HI-r2.xls" target="_blank"><img src="../tioh/picts/excel-icon.jpg" width="15" height="15" align="left" border="0">TIOH Lifestyle log West HI</a> </li>');
document.write('      <li><a href="tioh-lifestyle-log-East-HI-r2.xls" target="_blank"><img src="../tioh/picts/excel-icon.jpg" width="15" height="15" align="left" border="0">TIOH Lifestyle log East HI</a> </li>');
document.write('    </ul>');
document.write('  </li>');
document.write('  <li class="menuT"><a href="newsletters.html"><u>2009 TIOH Newsletters</u></a></li>');  
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="2009-TIOH-newsletter-1.pdf" target="_blank"><img src="../tioh/picts/Adobe-Acrobat-Reader-15x15.jpg" width="15" height="15" align="left" border="0">Newsletter #1 4/20/09</a></li>');
document.write('      <li><a href="pub5D.pdf" target="_blank"><img src="../tioh/picts/Adobe-Acrobat-Reader-15x15.jpg" width="15" height="15" align="left" border="0">Final Newsletter 2009</a></li>');
document.write('    </ul>');
document.write('  </li>');
document.write('  <li class="menuT"><a href="participant-recipes.html"><u>Participant Recipes</u></a></li>');
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="recipes/Crustless-Spinach-Pie.pdf"_blank"><img src="../tioh/picts/Adobe-Acrobat-Reader-15x15.jpg" width="15" height="15" align="left" border="0">Crustless Spinach Pie</a></li>');
document.write('    </ul>');
document.write('  </li>');
document.write('  <li class="menuT"><a href="mailto:info@fivemountains.org" target="_blank">Contact Us</a>');
 

// END LINKS //



document.write('</ul>');
document.write('</td></tr><tr><td align="center">');
document.write('<br> <strong>Sponsored in part by: </strong><br>');

// START MENU IMAGES


   if (showimage1 == "yes") {
document.write('<br>  <img src="picts/sponsors/alohacare-sm.jpg" border="0" class="borders"> <br> <br><br>');
}
   if (showimage2 == "yes") {
document.write(' <img src="picts/sponsors/hmsa-sm.jpg" border="0" class="borders"> <br> <br><br>');
}
if (showimage3 == "yes") {
document.write(' <a href="http://walmartstores.com/AboutUs/8412.aspx" target="_blank"><img src="picts/sponsors/walmartlogo-sm.jpg" border="0" class="borders"></a> <br> <br><br>');
}
   if (showimage4 == "yes") {
document.write(' <a href="http://www.drmonicascheel.com" target="_blank"><img src="picts/sponsors/monicasheel-sm.jpg" border="0" class="borders"></a> <br> <br><br>');
}
 
//  End -->



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







 









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;