// JavaScript Document
<!--
function mmLoadMenus() {
  if (window.mm_menu_0919213446_0) return;
                  window.mm_menu_0919213446_0 = new Menu("root",186,22,"Verdana, Arial, Helvetica, sans-serif",12,"#333366","#333366","#FFFFFF","#F8E7C8","left","middle",5,0,500,-5,7,true,true,true,0,true,true);
  mm_menu_0919213446_0.addMenuItem("Why&nbsp;Fitness&nbsp;Together","location='whyft.htm'");
  mm_menu_0919213446_0.addMenuItem("4&nbsp;Steps&nbsp;to&nbsp;Your&nbsp;Success","location='4steps.htm'");
  mm_menu_0919213446_0.addMenuItem("Personal&nbsp;Fitness&nbsp;Benefits","location='personal_fitness.htm'");
   mm_menu_0919213446_0.hideOnMouseOut=true;
   mm_menu_0919213446_0.bgColor='#FFFFFF';
   mm_menu_0919213446_0.menuBorder=2;
   mm_menu_0919213446_0.menuLiteBgColor='#FFFFFF';
   mm_menu_0919213446_0.menuBorderBgColor='#FF9900';

mm_menu_0919213446_0.writeMenus();
} // mmLoadMenus()

startList = function() {
	if (document.all && document.getElementById) {
		navRoot = document.getElementById("dmenu");
		for (i=0; i < navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}

window.onload=startList;
//-->