// Forensatzung
// Blendet die Forensatzung aus
// (c) 2010 by Dicope
// Mail: dicope [aht] plan-of-attack [puhnkt] net
// ==UserScript==
// @name          Forensatzung
// @namespace     http://greasemonkey.ppopn.net
// @description   Blendet die Forensatzung aus
// @include       http://82.149.226.131/bb/board.php*
// @include       http://forum.counter-strike.de/bb/board.php*
// @include       http://forum.cstrike.de/bb/board.php*
// @include       http://forum.mods.de/bb/board.php*
// ==/UserScript==

     var links = document.getElementsByTagName('b');
     var i = 0;
     while(i<links.length) {
      if(links[i].innerHTML.match(/Aktualisierte Forensatzung/gi)) {
       if(links[i].parentNode.parentNode.childNodes[9].innerHTML.match(/.*27\.04\.2005.*/)) {
        links[i].parentNode.parentNode.parentNode.style.display = 'none';
        break;
       }
      }
      i++;
     }
