// ==UserScript==
// @name LO deleter
// @namespace LO
// @description Jednoduchy, ale funkcni deLOlizator pro Greasemonkey s integrovanym jQuery
// @include http://www.root.cz
// ==/UserScript==
$("em,small").each(
function(idx) {
if (/Lael|LO|Mofo|Lojza/.test($(this).text())) {
$(this).parent().parent().remove();
}
});