// Bunte Threads (200607081327)
// Hintergruende fuer Threads in der Uebersicht
// (c) 2010 by Dicope
// Mail: dicope [aht] plan-of-attack [puhnkt] net
// ==UserScript==
// @name          Bunte Threads (200607081327)
// @namespace     http://greasemonkey.ppopn.net
// @description   Hintergruende fuer Threads in der Uebersicht
ï»¿// @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==

tname = new Array();
timg = new Array();

/////////////// [ KONFIGURATION ] ///////////////

// Bilder
//
// Syntax:
// fname.push("teil des threadnamens kleingeschrieben");
// fbnm.push("URL");

tname.push("schÃ¶nes wochenende");
timg.push("http://www.abload.de/img/swenye.jpg");

tname.push("brunch");
timg.push("http://img54.imageshack.us/img54/7205/brunch1ig.jpg");

tname.push("fotogra");
timg.push("http://img233.imageshack.us/img233/1062/foto5uo.jpg");

tname.push("hackfressen");
timg.push("http://img64.imageshack.us/img64/6845/hack1em.jpg");

tname.push("metal");
timg.push("http://img360.imageshack.us/img360/9128/metal1pp.jpg");

tname.push("handy");
timg.push("http://img72.imageshack.us/img72/3183/handy5cq.jpg");

tname.push("san andreas");
timg.push("http://img272.imageshack.us/img272/3731/sanandreas6qh.jpg");

tname.push("poker");
timg.push("http://img352.imageshack.us/img352/1237/poker8fn.jpg");

tname.push("battlefield 2");
timg.push("http://img256.imageshack.us/img256/6665/bf25ml.jpg");

tname.push("schöne frauen");
timg.push("http://img20.imageshack.us/img20/6052/schonefrauen9em.jpg");		//[T! A 1888] J-C

tname.push("tour de france");
timg.push("http://img515.imageshack.us/img515/429/tourdefrance7lp.jpg");	//[T! A 1888] J-C

tname.push("kino");
timg.push("http://img523.imageshack.us/img523/8556/kino21gp.jpg");		//[T! A 1888] J-C

tname.push("tv");
timg.push("http://download.ist-uber.de/download/_hidden_/host/TVTipp1.jpg");    //KEC

tname.push("auto");
timg.push("http://img244.imageshack.us/img244/6849/50510030011l1zj.jpg");	//Tobulus

/////////////////////////////////////////////////

     var links = document.getElementsByTagName('a');
     var i = 0;
     var div;
     var j;
     var bu;
     while(i<links.length) {
     j = 0;
      if(links[i].href.indexOf("thread.php")>=0) {
        while(j < tname.length) {
          if(links[i].textContent.toLowerCase().indexOf(tname[j]) >= 0) {
            links[i].parentNode.style.backgroundImage = "url(" + timg[j] + ")";
            div = document.createElement("div");
            bu = links[i].parentNode;
            while(bu.childNodes.length > 0) {
              div.appendChild(bu.childNodes[0].cloneNode(true));
              bu.removeChild(bu.childNodes[0]);
            }
            bu.appendChild(div);
            div.style.margin = "3px";
            div.style.MozBorderRadius = "10px";
            div.style.backgroundColor = "#000000";
            div.style.MozOpacity = 0.7;
            bu.appendChild(div);
          }
          j++;
        }
      }
      i++;
     }