//this function will put the nav bar at the bottom of a web page so we can centrally administer it
function navbar() {
  document.write("<P ALIGN=center><font size=1><B>");
  document.write("<a href='http://www.lhs.loganschools.org/index.html'>Home Page</a> &#124; ");
  document.write("<a href='http://205.121.198.42/faculty/faculty.php'>Faculty/Staff</a> &#124; ");
  document.write("<a href='http://www.lhs.loganschools.org/counseling/'>Counseling</a> &#124; ");
  document.write("<a href='http://www.lhs.loganschools.org/~dreeder/'>Media Center</a> &#124; ");
  document.write("<a href='http://grizzly.lhs.loganschools.org/'>Grizzly Online</a> &#124; ");
  document.write("<a href='http://www.lhs.loganschools.org/newadditions/grading.htm'>Grades/Reg</A> &#124; ");
  document.write("<a href='http://www.lhs.loganschools.org/announce/announce.htm'>Daily/Weekly/Monthly Events/Sched</a>");
  document.write("<br></B></font>");
  document.write("</P>");
}

