// JavaScript Document

//This script changes the graphic on mouse over and a graphic in
//another part of the screen

{
altj1 = new Image();
altj1.src = "images/j_unactive.png";

altj2 = new Image();
altj2.src = "images/j_active.png";

alte1 = new Image();
alte1.src = "images/e_unactive.png";

alte2 = new Image();
alte2.src = "images/e_active.png";




}
function imageChange(imageID,imageName,imageID2,imageName2) {


{
document.images[imageID].src = eval(imageName + ".src");
document.images[imageID2].src = eval(imageName2 + ".src");
}

}

