// ==UserScript==
// @name          MozillaZine Forums Thread's Parent
// @namespace     http://zoolcar9.lhukie.net/
// @include       http://forums.mozillazine.org/viewtopic.php*
// @description	  
// ==/UserScript==

(function() {
  var fParent, link, head;

  fParent = document.evaluate('//td[@class="nav"]/a',
    document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);

  link = document.createElement('link');
  link.href = fParent.snapshotItem(1);
  link.title = fParent.snapshotItem(1).firstChild.nodeValue;
  link.setAttribute('rel', 'Up');

  head = document.getElementsByTagName('head')[0];
  head.appendChild(link);
 
})();

