Button.prototype.onTouchStart = function() {
    this.handleEvent(Button.TOUCHSTART);
    this.on('touchend', this.onTouchEnd, this);
    this.on('touchendoutside', this.onTouchEndOutside, this);
};