function Img(id, filename, title, description, standard) {
	this._id = id;
	this._filename = filename;
	this._title = title;
	this._description = description;
	this._standard = standard;
	
	this._image = new Image();
	this._image.src = this.getPath();
}
Img.prototype.getId = function() {return this._id;}
Img.prototype.getFilename = function() {return this._filename;}
Img.prototype.getTitle = function() {return this._title;}
Img.prototype.getDescription = function() {return this._description;}
Img.prototype.getStandard = function() {return this._standard;}
Img.prototype.getPath = function() {return this._filename;}