Lang = {}
Lang.words = new Array()
Lang.say = function(word) {
	return typeof Lang.words[word] == 'undefined' ? word : Lang.words[word];
}