// Released under the GPL license.
// By Lior Z. August 2006
//
// ==UserScript==
// @name NRG textual advertisements remover
// @namespace http://www.nrg.co.il/
// @description Removes the textual ads for Shops NRG in www.nrg.co.il.
// @include http://www.nrg.co.il/*
// @include http://nrg.co.il/*
// ==/UserScript==
var allElements, thisElement;
allElements = document.evaluate(
"//a[contains(@href,'http://www.nrgshops.co.il/sale.php')]/ancestor::table[@width='124']|//img[contains(@src,'nrgShops/header')]/ancestor::table[@width='124']",
document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
for (f = 0; f < allElements.snapshotLength; f++) {
thisElement = allElements.snapshotItem(f);
//thisElement.style.background = "red";
//thisElement.style.border = "red 3px";
thisElement.parentNode.removeChild(thisElement);
}