// Version 0.01 Beta
//
// 20090404 0.01 Initial version.
//
// ==UserScript==
// @name Digi.no ad-remover
// @namespace http://drop.by
// @description Hides big ad on article page.
// @include http://www.digi.no/*
// ==/UserScript==
(function () {
var e = document.getElementsByClassName("thisIsAd")[0];
if (e)
e.parentNode.setAttribute("style", "display: none");
})();