// DeviantART - Beggar Breaker v0.1
// Made By Luke Stevenson {http://lucanos.deviantart.com/}
// Distributed and Maintained via GMVC
// Last updated: 22 January 2006
//
//   This script hides any "Be Generous" Banners on deviantART pages.
//
// ==UserScript==
// @name              DeviantART - Beggar Breaker
// @namespace         http://gmvc.lucanos.com/
// @description       (v0.1) Hides any "Be Generous" Banners
// @include           http://deviantart.com*
// @include           http://*.deviantart.com*
// ==/UserScript==

(function() {

	var beggingBanner = document.evaluate("//a/img[@src='http://i.deviantart.com/icons/userpage/begenerous.png']",document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
	if ( beggingBanner.snapshotLength>0 ) {
		// Banner exist on page
		beggingBanner.snapshotItem(0).style.display = "none";
	}

})()