// ==UserScript==
// @name					Unfriendly Digg
// @namespace			http://www.outshine.com/
// @description		On Digg, removes the friends box.
// @include				*digg.com/*
// ==/UserScript==

/*
Script by Tony Boyd.
Authored on 2007-06-02.
Updated on 2007-06-02.
Version: 1.0.0
*/

var allDivs, thisDiv;
allDivs = document.evaluate(
	"//div[@class='side-container']",
	document,
	null,
	XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,
	null
);
for (var i = 0; i < allDivs.snapshotLength; i++) {
	thisDiv = allDivs.snapshotItem(i);
	if (thisDiv.innerHTML.match(/Activity in 48hr<\/h2>/) || thisDiv.innerHTML.match(/<h2>Add Your Friends/)) {
		thisDiv.style.display = "none";
	}
}
document.getElementById('announce-invite').style.display = "none";

