var Jt_Texts = new Class({
	initialize: function(texts) {
		this._texts = ('object' === $type(texts)) ? $H(texts) : $H();
	},
	
	get: function(key) {
		return this._texts[key];
	}
});
