# File /home/ser/Work/rexml/rexml/node.rb, line 15
  def next_sibling_node
			return nil if @parent.nil?
			@parent[ @parent.index(self) + 1 ]
		end