// JavaScript Document

// Example:

// simplePreload( 'images/s_1.jpg', 'images/s_2.jpg', 'images/s_3.jpg', 'images/s_4.jpg', 'images/s_5.jpg', 's_6.jpg' ); 

function simplePreload() { 
  var args = simplePreload.arguments;
  document.imageArray = new Array(args.length);
  for(var i=0; i<args.length; i++)  {
    document.imageArray[i] = new Image;
    document.imageArray[i].src = args[i];
  }
}

//Function to Switch the Image on Command (i.e. onMouseOver)
// onMouseOver = "switchImage('slide', imageArray[2].src);"
// onMouseOut = "switchImage('slide', imageArray[1].src)";
function switchImage(imgName, imgSrc) {
  if (document.images)  {
    if (imgSrc != "none")    {
      document.images[imgName].src = imgSrc;
    }
  }
}

