$.extend(jQuery.Event.prototype, {
    stop: function() {
        this.stopPropagation();
        this.preventDefault();
    }
});
