<!-- Begin

// 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 linkstop 		= "no" 		//  START LINKS AT THE VERY TOP


document.write('<DIV id="menulocation" style="z-index: 10;">');
document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="154"><tr><td>');
   if (linkstop == "no") {
document.write('<img src="picts/menu-top.gif" width="152" height="90" class="menutrans"><br>');
}
document.write('<ul id="top-nav">');




// START MENU LINKS - EDIT BELOW THIS AREA


document.write('  <li class="menuT"><a href="home.htm">Home</a></li>');

document.write('  <li class="menuT"><a href="biography.htm">Biography</a></li>');

document.write('  <li class="menuT"><a href="photogallery.htm">Photo Gallery</a>');

document.write('  <li class="menuT"><a href="books.htm">Books</a>');

document.write('  <li class="menuT"><a href="look-within.htm">Take a Look Within</a>');

document.write('  <li class="menuT"><a href="risky-relationships.htm">Risky Relationships</a>');

document.write('  <li class="menuT"><a href="articles.htm">Articles</a>');

document.write('  <li class="menuT"><a href="radio-interview.htm">Radio Interview</a>');

document.write('  <li class="menuT"><a href="video.htm">Video Interview</a>');

document.write('  <li class="menuT"><a href="question-answers.htm">Questions & Answers</a>');

document.write('  <li class="menuT"><a href="resources.htm">Resources</a>');

document.write('  <li class="menuT"><a href="contact.htm">Contact</a></li>');

document.write('  <li class="menuT"><a href="media-room.htm">Media Room</a>');

document.write('  <li class="menuT"><a href="newsletter.htm" target="_blank">News Letter</a>');

document.write('  <li class="menuT"><a href="events.htm">Events</a>');

document.write('  <li class="menuT"><a href="links.htm">My Favorite Links</a>');


// END LINKS //



document.write('</ul>');
document.write('</td></tr><tr><td align="center">');


// START MENU IMAGES


   if (showimage1 == "no") {
document.write('<br><br><img src="images/elder1.gif" border="0" class="borders"></a><br><br><br>');
}
   if (showimage2 == "no") {
document.write('<a href="index.html"><img src="images/Biography3-1.jpg" border="0" class="borders"></a><br><br>');
}


//  End -->



document.write('</td></tr></table></DIV>');








// COPYRIGHT 2006 © TecFX

// 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;
