// 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 = '<div id="nav">  \
<ul>  \
<li class="navlist"><a href="index.html" id="home"><span>Home</span></a></li> \
<li class="navlist"><a href="the-book.html" id="thebook">The Book</a></li>  \
<li class="navlist"><a href="shop.html" id="shop">Shop</a></li>  \
<li class="navlist"><a href="more.html" id="more">More</a></li> \
<li class="navlist"><a href="connect.html" id="connect">Connect</a></li>  \
</ul>  \
<!-- end nav --></div>';


var footer = '<div id="footer"> \
<p>Copyright &copy;2009 P.H.A.B. Nutrition. All Rights Reserved.</p> \
<!-- end footer --></div>';



/***********************************************
* 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, "")
}


