// Create the popout menus for bad browsers.
startList = function() {
 if (document.all&&document.getElementById) {
  navRoot = document.getElementById("nav");
  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", "");
     }
    }
  }
 }
 return;
}
// Create the pop up photo effect.
function PopupPic(sPicURL) {
  window.open( "popup.htm?"+sPicURL, "","resizable=1,HEIGHT=200,WIDTH=200");
}
function flipPic() {
 var changePic = document.getElementById("bookmarkpic");
 if (changePic.className=="1") {
	 changePic.src = "images/bookmark2.jpg";
	 changePic.className="2";
	 return;
 } 
 if (changePic.className=="2") {
	 changePic.src = "images/bookmark1.jpg";
	 changePic.className="1";
	 return;
 }
}
window.onload = startList;