var baseImages = new Array
var altImages = new Array
var c = new Array
function loadImages () {
  var b = new Array
  var a = new Array
  a[0] = "/Icons/home02.gif"; a[1] = "/Icons/shows02.gif"; a[2] = "/Icons/port02.gif"; a[3] = "/Icons/Press02.gif"; a[4] = "/Icons/gall02.gif"
  b[0] = "/Icons/home00.gif"; b[1] = "/Icons/shows00.gif"; b[2] = "/Icons/port00.gif"; b[3] = "/Icons/Press00.gif"; b[4] = "/Icons/gall00.gif"
  c[0] = "home"; c[1] = "shows"; c[2] = "portfolio"; c[3] = "press"; c[4] = "galleries"
  a[5] = "/Icons/emart02.gif"; a[6] = "/Icons/personalize02.gif"; a[7] = "/Icons/aboutart02.gif"; a[8] = "/Icons/aboutwg02.gif"; a[9] = "/Icons/webmaster02.gif"; a[10] = "/Icons/demo02.gif"
  b[5] = "/Icons/emart00.gif"; b[6] = "/Icons/personalize00.gif"; b[7] = "/Icons/aboutart00.gif"; b[8] = "/Icons/aboutwg00.gif"; b[9] = "/Icons/webmaster00.gif"; b[10] = "/Icons/demo00.gif"
  c[5] = "eMailArtist"; c[6] = "personalization"; c[7] = "aboutArtist"; c[8] = "aboutWG"; c[9] = "webMaster";c[10] = "demo"
  for (i = 0; i <= 10; i++) {
	baseImages[i] = new Image; 	altImages[i] = new Image
	baseImages[i].src = b[i]; altImages[i].src = a[i]
	}
}
function swapToAlt(index) {document.images[c[index]].src = altImages[index].src}
function restoreBase(index) {document.images[c[index]].src = baseImages[index].src}
function goBack() {history.go(-1)}
