




/* change image function */

function ChangeImage(imageName, newImageFile) {

// Find the object that represents the <img> tag
var image = document.getElementById(imageName)

// Change the picture
image.src = newImageFile
}

