var imageStack = new Array();
imageStack[0] = "images/homeOff.gif";
imageStack[1] = "images/homeOn.gif";
imageStack[2] = "images/storageOff.gif";
imageStack[3] = "images/storageOn.gif";
imageStack[4] = "images/featuresOff.gif";
imageStack[5] = "images/featuresOn.gif";
imageStack[6] = "images/securityOff.gif";
imageStack[7] = "images/securityOn.gif";
imageStack[8] = "images/directionsOff.gif";
imageStack[9] = "images/directionsOn.gif";
imageStack[10] = "images/contactOff.gif";
imageStack[11] = "images/contactOn.gif";


var loaded = new Array();
for (i = 0; i < imageStack.length; i++){
  loaded[i] = new Image();
  loaded[i].src = imageStack[i];
}

function imgOn(which)
{
  document.images[which].src = "images/" + which + "On.gif";
}

function imgOff(which)
{
  document.images[which].src = "images/" + which + "Off.gif";
}

var names = new Array();
names[0] = "home";
names[1] = "storage";
names[2] = "features";
names[3] = "security";
names[4] = "directions";
names[5] = "contact";

var url = new Array();
url[0] = "index.html";
url[1] = "storage.html";
url[2] = "features.html";
url[3] = "security.html";
url[4] = "directions.html";
url[5] = "contact.html";

function navWrite(){
  for (i = 0; i < names.length; i++){
    document.write('<a href="' + url[i] + '" onMouseOver="imgOn(\'' + names[i] +
                   '\')" onMouseOut="imgOff(\'' + names[i] + '\')"><img src="images/' + 
                   names[i] + 'Off.gif" name="' + names[i] + '" border="0"></a>');
  }
}

//This is for the copywrite line
function copy(){
      document.write('<a href="index.html">&copy;&nbsp;2002 Market Street Self Storage</a>');
}

//This is for the Quachie Media line
function quachie(){
      document.write('Designed and Managed By:  Quachie Media - www.quachie.com');
}