// JavaScript Video class
function Video(id, client, title, mp4url, oggurl, thumbPath, posterPath) {
   	this.id = id;
	this.client = client;
	this.title = title;
	this.mp4url = mp4url;
	this.oggurl = oggurl;
	this.thumbPath = thumbPath;
	this.posterPath = posterPath;
}

Video.prototype.id;
Video.prototype.client;
Video.prototype.title;
Video.prototype.mp4url;
Video.prototype.oggurl;
Video.prototype.thumbPath;
Video.prototype.posterPath;

Video.prototype.getID = function() {
   	return this.id;
}
Video.prototype.getClient = function() {
   	return this.client;
}
Video.prototype.getTitle = function() {
   	return this.title;
}
Video.prototype.getMP4URL = function() {
   	return this.mp4url;
}
Video.prototype.getOGGURL = function() {
   	return this.oggurl;
}
Video.prototype.getThumbPath = function() {
   	return this.thumbPath;
}
Video.prototype.getPosterPath = function() {
   	return this.posterPath;
}
