# File lib/facets/more/times.rb, line 189
  def months_ago(months)
    if months >= self.month 
      change(:year => self.year - 1, :month => 12).months_ago(months - self.month)
    else
      change(:year => self.year, :month => self.month - months)
    end
  end