// Links hervorheben
// Hebt Links in Threads besonders hervor
// (c) 2010 by Dicope
// Mail: dicope [aht] plan-of-attack [puhnkt] net
// ==UserScript==
// @name          Links hervorheben
// @namespace     http://greasemonkey.ppopn.net
// @description   Hebt Links in Threads besonders hervor
// @include       http://82.149.226.131/bb/thread.php*
// @include       http://forum.counter-strike.de/bb/thread.php*
// @include       http://forum.cstrike.de/bb/thread.php*
// @include       http://forum.mods.de/bb/thread.php*
// ==/UserScript==

     var links = document.getElementsByTagName('a');
     var i=0;

     while(i<links.length) {
      if(links[i].target == '_blank') {
        if(!(links[i].href.match(/.*\/bb\/pm.*/gi))) {
          links[i].style.backgroundColor = '#091827';
        }
      }
      i++;
     }