// ==UserScript==
// @name           Shut Up And Digg
// @namespace      http://gibberish.com/hacks/gm
// @description    Consigns all traces of comments at Digg.com to the dustbin to which they belong
// @include        *digg.com*
// ==/UserScript==

(function(){
document.getElementById('comments').style.display = 'none';
var commentdroppings = document.getElementsByClassName("a");
for (var d = commentdroppings.length - 1; d >=0; d--)
{
	if (commentdroppings[d].className.indexOf("comments")!= -1)
	{
		commentdroppings[d].style.display = "none";
	}
}
})();