class Timers::Group

def now_and_every(interval, recur = true, &block)

argument will be the time at which the group was asked to fire timers for.
Call the given block immediately, and then periodically at the given interval. The first
def now_and_every(interval, recur = true, &block)
	yield
	every(interval, recur, &block)
end