function nav()
{
  document.write("<hr />")
  document.write("<a href=\"/\">Site Root</a>")
  document.write(" | ")
  document.write("<a href=\"index.htm\">JavaScript Home</a>")
  document.write("<br />")
  document.write("<a href=\"01hello.htm\">01 Hello World</a>")
  document.write(" | ")
  document.write("<a href=\"02textIO.htm\">02 Text I/O</a>")
  document.write(" | ")
  document.write("<a href=\"03arith.htm\">03 Arithmetic</a>")
  document.write(" | ")
  document.write("<a href=\"03brith.htm\">03b Arithmetic</a>")
  document.write(" | ")
  document.write("<a href=\"04if.htm\">04 If Statement</a>")
  document.write(" | ")
  document.write("<a href=\"05for.htm\">05 For Loop</a>")
  document.write(" | ")
  document.write("<a href=\"06while.htm\">06 While Loop</a>")
  document.write("<br />")
  document.write("<a href=\"07do.htm\">07 Do Loop</a>")
  document.write(" | ")
  document.write("<a href=\"08objects.htm\">08 Objects</a>")
  document.write(" | ")
  document.write("<a href=\"09arrayOfObjects.htm\">09 Array-of-Objects</a>")
  document.write(" | ")
  document.write("<a href=\"10ObjectsAndDOM.htm\">10 Objects and DOM</a>")
  document.write("<br />")
  document.write("<a href=\"11a-AJAX-DOM.htm\">11a - AJAX Hello World!</a>")
  document.write(" | ")
  document.write("<a href=\"11AJAX-DOM.htm\">11b - AJAX, Arrays and DOM</a>")
  document.write(" | ")
  document.write("<a href=\"12-2d-array.htm\">12 - Two Dimensional Arrays</a>")
  document.write("<br />")
  document.write("<a href=\"ttt.htm\">Tic Tac Toe</a>")
  document.write("<br />")
  document.write("<a href=\"nav.htm\">nav.js</a>")
  document.write("<br />")
  document.write("<a href=\"JavaScript.zip\">Download Tutorial</a>")
  document.write(" | ")
  document.write("<a href=\"http://www.w3schools.com/js/\" target=\"_blank\">W3Schools</a>")
  document.write("<hr />")
}