@Description: changes the nodelist to be the parents of the nodes instead of themselves
var nodes = $('ol li');
//adds element with id 'wrapper' to the node list
nodes.add('#wrapper');
//add all the links to the nodeList
nodes.add('a');
@File: nodeList/prototype/parents.js