// image loader for Dee's Dance Design Menu
// created by David G Shrock, davids@dracotorre.com

var imageLoc = "images/";

function loadImages()
{
  this[0] = new Image();
  this[0].src = imageLoc + "menubut2.gif";
  this[1] = new Image();
  this[1].src = imageLoc + "menubut4.gif";
  this[2] = new Image();
  this[2].src = imageLoc + "menubut6.gif";
  this[3] = new Image();
  this[3].src = imageLoc + "menubut8.gif";
  this[4] = new Image();
  this[4].src = imageLoc + "menubut10.gif";
  this[5] = new Image();
  this[5].src = imageLoc + "menubut12.gif";
}

function setImLoc(loc)
{
  imageLoc = loc;
}

function overImage(i,j)
{
  // i is the img number on the doc page starting with 0
  document.images[i].src = imageLoc + "menubut" + j + ".gif";
}
// individual buttons
function accImageOn(i)
{
  document.images[i].src = imageLoc + "accbuton.gif";
}
function accImageOv(i)
{
  document.images[i].src = imageLoc + "menubut10.gif";
}
function appImageOn(i)
{
  document.images[i].src = imageLoc + "appbuton.gif";
}
function appImageOv(i)
{
  document.images[i].src = imageLoc + "menubut8.gif";
}
function shoeImageOn(i)
{
  document.images[i].src = imageLoc + "shoebton.gif";
}
function shoeImageOv(i)
{
  document.images[i].src = imageLoc + "menubut6.gif";
}


