function Slide (id, url, thumb, width, height, title)
	{
		this._id = id;
		this._url = url;
		this._thumb = thumb;
		this._width = width;
		this._height = height;
		this._title = title;	
	}
Slide.prototype.setTitle = function (newTitle) {this._title = newTitle;}
Slide.prototype.getTitle = function () {return this._title;}

Slide.prototype.setHeight = function (newHeight) {this._height = newHeight;}
Slide.prototype.getHeight = function () {return this._height;}

Slide.prototype.setWidth = function (newWidth) {this._width = newWidth;}
Slide.prototype.getWidth = function () {return this._width;}

Slide.prototype.setImageURL = function (newURL) {this._url = newURL;}
Slide.prototype.getImageURL = function () {return this._url;}

Slide.prototype.setThumbURL = function (newURL) {this._thumb = newURL;}
Slide.prototype.getThumbURL = function () {return this._thumb;}

Slide.prototype.setID = function (newID) {this._id = newID}
Slide.prototype.getID = function () {return this._id;}
