function Version() {
	this.value = "1.1 Build 14231";
}

Version.prototype = {
	getVersion: function(){
		return this.value;
	}
}

version = new Version();
