// ==UserScript==
// @name           Animale.ro adkiller
// @namespace      http://wp.narc.ro/
// @include        http://www.animale.ro/forum/*
// @require        http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js
// ==/UserScript==

// Friskies commercial is a background image, so remove all background
var theBody = document.getElementsByTagName("body")[0];
theBody.style.background="#eee";
theBody.style.margin="0px";

// Top header with "animall.ro" commercial
$("#header_right_cell").hide();

// Also remove the bottom ad
$("div.postbit_adcode").parent().parent().parent().hide();

//$(".left_wiskas").hide();
//$(".top_wiskas").hide();
$("div.right_wiskas").hide();

$("div.box_joybox").remove();

$("object[id*=AdServerObj]").remove();
$("a[href*=http://ads.]").remove();

