// ==UserScript==
// @name           WP-Delete Moderated Comments
// @description    Sets all moderated comments caught in WordPress to be deleted. (Tested with WordPress 1.2 Mingus.)
// @author         Meitar Moscovitz ( http://maymay.net/ ) Copyright 2005
// @include        Change this to your WordPress blog's comment moderation page.
// ==/UserScript==

(function () {
    var e = document.getElementsByTagName('input');
    for (var i=0; i<e.length; i++)
    {
        if (e[i].type == 'radio' && e[i].value == 'delete' && e[i].defaultChecked == false)
        {
            e[i].checked = true;
        }
    }
})();

