// JavaScript Document
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);


function CreateControl(PARAM, DIV_ID)
{
  var d = document.getElementById(DIV_ID);
  document.write(PARAM);
}

var navigation = '<ul id="navigation">	\
			<li><a class="home" href="index.html">Home</a></li> \
			<li><a class="about" href="#">About</a> \
            	<ul class="dropdown"> \
					<li><a href="savannah-nutritionist.html">Meet Deborah</a></li> \
                    <li><a href="/calendar-of-events.php">Calendar</a></li> \
				</ul> \
			</li> \
			<li><a class="programs" href="#">Nutrition Programs</a> \
				<ul class="dropdown"> \
					<li><a href="office-visits.html">Office Visits</a></li> \
					<li><a href="phab-on-the-go.html">P.H.A.B. On-the-Go</a></li> \
                    <li><a href="wellness-support.html">Wellness Support</a></li> \
				</ul> \
			</li> \
			<li><a class="professional" href="professional.html">Professional</a></li> \
			<li><a class="members" href="members/">Members Only</a></li> \
			<li><a class="contact" href="contact.html">CONTACT US</a></li> \
		</ul>';

var member_navigation = '<ul id="navigation">	\
			<li><a class="home" href="../index.html">Home</a></li> \
			<li><a class="about" href="#">About</a> \
            	<ul class="dropdown"> \
					<li><a href="../savannah-nutritionist.html">Meet Deborah</a></li> \
                    <li><a href="/calendar-of-events.php">Calendar</a></li> \
				</ul> \
			</li> \
			<li><a class="programs" href="#">Nutrition Programs</a> \
				<ul class="dropdown"> \
					<li><a href="../office-visits.html">Office Visits</a></li> \
					<li><a href="../phab-on-the-go.html">P.H.A.B. On-the-Go</a></li> \
                    <li><a href="../wellness-support.html">Wellness Support</a></li> \
				</ul> \
			</li> \
			<li><a class="professional" href="../professional.html">Professional</a></li> \
			<li><a class="members" href="../members/">Members Only</a></li> \
			<li><a class="contact" href="../contact.html">CONTACT US</a></li> \
		</ul>';



/***********************************************
* Bookmark site script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/

function bookmarksite(title, url){
if (document.all)
window.external.AddFavorite(url, title);
else if (window.sidebar)
window.sidebar.addPanel(title, url, "")
}



