Tuple node = (Node)it.next();
//=== If it isn't a FOCUS node, move it a little
if(node.getString("refType").equals("REFERENCES") || node.getString("refType").equals("CITATIONS"))
{
//=== Get the VisualItem for the node, and it's current location
VisualItem item = m_vis.getVisualItem(treeNodes, node);
double currentX = item.getX();
double currentY = item.getY();
//=== Generate a new X and Y coordinate based off the current location
//=== Current Implementation moves the first node down and left, next one up and right
double newX = 0;
double newY = 0;