<!-- 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		= "no"		//  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.gif" width="152" height="82" class="menutrans"><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="the_problem.htm">The Problem</a></li>');


document.write('  <li class="menuT"><a href="service.htm">Programs & Services</a></li>');



document.write('  <li class="menuT"><a href="about.htm">About Us</a>'); 
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="about.htm">Who we are</a></li>');
document.write('      <li><a href="staff.htm">Staff and Board of Directors</a></li>');
document.write('      <li><a href="testimonials.htm">Testimonials</a></li>');
document.write('    </ul>');
document.write('  </li>');



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



document.write('  <li class="menuT"><a href="site_map.htm">Site Map, Privacy</a>');
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="site_map.htm">Site Map</a></li>');
document.write('      <li><a href="privacy.htm">Privacy Policy</a></li>');
document.write('    </ul>');
document.write('  </li>');



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


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




// END LINKS //



document.write('</ul>');
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 -->

// START XML FLASH CHANGER

// XML CHANGER VARIABLES YOU CAN EDIT - ALSO EDIT THE image_changer.xml

var XMLshowsflash	= "yes"		// SHOW FLASH XML CHANGER
var XMLflashcolor	= "FFFFFF"	// FLASH XML BACKGROUND COLOR
var XMLflashwidth	= "120"		// WIDTH OF THE FLASH (IN PIXELS) (and adjust the menu.js)
var XMLflashheight	= "120"		// HEIGHT OF THE FLASH (IN PIXELS) (and adjust the menu.js)
var XMLborder		= "000000"	// SCROLLER AND IMAGE BORDER COLOR

// XML CHANGER SUPPORT: - http://www.allwebco-templates.com/support/S_flash_image_changerXML-ADDON.htm


   if (XMLshowsflash == "yes") {
document.write('<TABLE cellpadding="0" cellspacing="0" border="1" bordercolor="#'+XMLborder+'" style="border-collapse:collapse"><tr><td>');
document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="'+XMLflashwidth+'" HEIGHT="'+XMLflashheight+'" id="image_changer_XML">');
document.write('<PARAM NAME="movie" VALUE="image_changer_XML.swf">');
document.write('<PARAM NAME="quality" VALUE="high">');
document.write('<PARAM NAME="wmode" VALUE="transparent">');
document.write('<PARAM NAME="bgcolor" VALUE="#'+XMLflashcolor+'">');
document.write('<EMBED src="image_changer_XML.swf" quality="high" wmode="transparent" bgcolor="#'+XMLflashcolor+'" WIDTH="'+XMLflashwidth+'" HEIGHT="'+XMLflashheight+'" NAME="image_changer_XML" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">');
document.write('</EMBED></OBJECT><br>');
document.write('</td></tr></table>');
document.write('<br><br>');
}

// END XML FLASH CHANGER



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;