/**
  * Gets an item from the navigation tree
  * @param string $label
  * @return NavigationNode|FALSE false if item not found
  */
 public function get($label)
 {
     return $this->root->get($label);
 }