var RaccoonHanZen = function() {};

RaccoonHanZen.prototype.ZenNumer = new Array("‚P", "‚Q", "‚R", "‚S", "‚T", "‚U", "‚V", "‚W", "‚X", "‚O");
RaccoonHanZen.prototype.HanNumer = new Array("1", "2", "3", "4", "5", "6", "7", "8", "9", "0");

RaccoonHanZen.prototype.zen2HanNumber = function(input) {
	for (var i = 0; i < this.ZenNumer.length; ++i) {
		while (input.match(new RegExp(this.ZenNumer[i]))) {
			input = input.replace(this.ZenNumer[i], this.HanNumer[i]);
		}
	}
	return input;
};

