function LinkedButton( id ) {
	this._element = $( id );
}

LinkedButton.prototype = {

	update: function( data ) {
		this._element.enable();
	},

	reset: function() {
		this._element.disable();
	}
};