// Depopleizer
// version 0.1
// 28 May 2005
// Copyright (c) 2005, Adam Vandenberg
// Released under the GPL license
// http://www.gnu.org/copyleft/gpl.html
//
// --------------------------------------------------------------------
//
// This is a Greasemonkey user script.
//
// To install, you need Greasemonkey: http://greasemonkey.mozdev.org/
// Then restart Firefox and revisit this script.
//
// Under Tools, there will be a new menu item to "Install User Script".
// Accept the default configuration and install.
//
// To uninstall, go to Tools/Manage User Scripts,
// select "Depopleizer", and click Uninstall.
//
// ==UserScript==
// @name		Depopleizer
// @namespace	http://adamv.com/greases/
// @description 	Removes pop-up from Scoble's comment links
// @include	http://radio.weblogs.com/0001011/*
// @include	http://scoble.weblogs.com/*
// ==/UserScript==

(function(){
	var links = document.getElementsByTagName("a")
	for (var i=0; i < links.length; i++){
		var link = links[i];
		if (-1 < link.href.indexOf("scoblecomments")) {
			delete link.onclick;
		}
	}
})();
