// This is the preamble that goes in the index.htm page for each fan art gallery

function Picture(imageFile, imageWidth, imageHeight, thumbFile, thumbWidth, thumbHeight, caption) {
        this.imageFile = imageFile
        this.imageWidth = imageWidth
        this.imageHeight = imageHeight
        this.thumbFile = thumbFile
        this.thumbWidth = thumbWidth
        this.thumbHeight = thumbHeight
        this.caption = caption
}

