// JavaScript Document
{
alt0 = new Image();
// The names of the images that pop up on mouseover in a third location go here
// alt0 is the image that is replaced each time and shows back up on mouse out.
alt0.src = "http://www.trickstersonline.com/images/button_0c.gif";

alt1 = new Image();
alt1.src = "http://www.trickstersonline.com/images/button_1c.gif";

alt2 = new Image();
alt2.src = "http://www.trickstersonline.com/images/button_2c.gif";

alt3 = new Image();
alt3.src = "http://www.trickstersonline.com/images/button_3c.gif";

alt4 = new Image();
alt4.src = "http://www.trickstersonline.com/images/button_4c.gif";

alt5 = new Image();
alt5.src = "http://www.trickstersonline.com/images/button_5c.gif";

alt6 = new Image();
alt6.src = "http://www.trickstersonline.com/images/button_6c.gif";

alt7 = new Image();
alt7.src = "http://www.trickstersonline.com/images/button_7c.gif";

alt8 = new Image();
alt8.src = "http://www.trickstersonline.com/images/button_8c.gif";

function imageChange(imageID,imageName)
{
  document.images[imageID].src = eval(imageName + ".src");
}

}