function Binding(action, options) {
	this.action = action;				// Action object - contains func to be run
	this.options = options;				// to pass Action for options; not all Actions will implement
}

Binding.prototype.fire = function (ntevent, ev, tag) {
	return this.action(ntevent, ev, tag, this.options);
}
