

function Okazii(){
	this.version = '1.0';
	
	this.getVersion = function (){
		return this.version;
	}
}

var OKAZII = new Okazii();
 
