// ==UserScript==
// @name           DA ad box blocker
// @namespace      DA
// @include        http://*.deviantart.com/*
// ==/UserScript==

var tabela = document.getElementById('ad-blocking-makes-fella-sad');
var box = document.getElementById('a7bc0ff3');

//hiding the box
if (tabela) {
	tabela.setAttribute("style", 'display:none;'); }
	
//removing the deviantART Notice box
if (box) {
	box.parentNode.parentNode.setAttribute("style", 'display:none;'); }