//This is the navigation array

var names = new Array();
names[0] = "home";
names[1] = "locations";
names[2] = "contact";

var url = new Array();
url[0] = "index.html";
url[1] = "locations.html";
url[2] = "contact.html";

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


