function Display(i, d) {
    var image = i;
    var description = d;

    this.getImagePath = function() {
	return "gallery/images/" + image;
    };

    this.getThumbnailPath = function() {
	return "gallery/thumbnails/" + image;
    };

    this.setImage = function(i) {
	image = i;
    };

    this.getImage = function() {
	return image;
    };

    this.setDescription = function(d) {
	description = d;
    };

    this.getDescription = function() {
	return description;
    };
};


