//This is the navigation array

var names = new Array();
names[0] = "Home";
names[1] = "About Us";
names[2] = "Books";
names[3] = "Arts";
names[4] = "How To Order";
names[5] = "Mailing List";
names[6] = "Contact Us";


var url = new Array();
url[0] = "index.html";
url[1] = "about.html";
url[2] = "books.php3";
url[3] = "arts.php3";
url[4] = "order.html";
url[5] = "mailing_list.html";
url[6] = "contact.html";


function navWrite(){
  for (i = 0; i < names.length; i++){
    document.write('<b><a href="' + url[i] + '">'+ names[i] +'</a></b><br>');
  }
}

//This is for the copywrite line
function copy(){
      document.write('<a href="index.html">&copy;&nbsp;2002 Philippine Cultural and Educational Services</a>');
}


function quachie(){
      document.write('<a href="index.html">Designed and hosted by:  Quachie Media</a>');
}

