function GalleryImage(_title, _dimensions, _description,_cost, _path, _type, _width, _height, _artist, _artist_id)
{
	this.title = _title;
	this.dimensions = _dimensions;
	this.description = _description;
	this.cost = _cost;
	this.path = _path;
	this.type = _type;
	this.width = _width;
	this.height = _height;
	this.artist = _artist;
	this.artist_id = _artist_id;
	return this;
}