function buildNavBar() //recieve and useXMLHTTP request object
{
 var nB = document.getElementById("hNav");
 nB.innerHTML=
  "<span id=\"hNav5\">"
  +"<a href=\"index.html\" id=\"one\">Home</a>"
  +"<a href=\"faq.html\" id=\"two\">FAQs</a>"
  +"<a href=\"portfolio.html\" id=\"three\">Portfolio</a>"
  +"<a href=\"about.html\" id=\"four\">About Us</a>"
  +"<a href=\"contact.html\" id=\"five\">Contact Us</a>"
  +"</span>";
}

function updateNavBar()
{
 buildNavBar();
}

