module Hpricot::Container::Trav

def following_siblings()

out text and comment nodes.
Find sibling elements which follow the current one. Like the other "sibling" methods, this weeds
def following_siblings() 
  sibs = parent.containers 
  si = sibs.index(self) + 1 
  return Elements[*sibs[si...sibs.length]] 
end