<!--

var x=0;
var mylinks=new Array();
mylinks[0]=["Home","index.html"];
mylinks[1]=["Office Hours","officehours.html"];
mylinks[2]=["Posture Videos","videos.html"];
mylinks[3]=["About the Doctors", "bios.html"];


document.write("<ul>");
for (x in mylinks)
  {
    document.write("<li><a href=\"" + mylinks[x][1] + "\">" + mylinks[x][0] +" </a></li>"); 
  }
document.write("</ul>");
//-->


//include with <script type="text/javascript" src="scripts/navbar.js"></script>

