Button.prototype.onHover = function() {
    this.handleEvent(Button.HOVER);

    this.on('mouseout', this.onOut, this);
};