class Hpricot::Elements

def after(str = nil, &blk)

Pass in an HTML +str+, which is turned into Hpricot elements.
Just after each element in this list, add some HTML.
def after(str = nil, &blk)
  each { |x| x.parent.insert_after x.make(str, &blk), x }
end