class Hpricot::Elements

def prepend(str = nil, &blk)

Pass in an HTML +str+, which is turned into Hpricot elements.
Add to the start of the contents inside each element in this list.
def prepend(str = nil, &blk)
  each { |x| x.html(x.make(str, &blk) + x.children) }
end