// ==UserScript==
// @name          Remove imdb a9 search
// @namespace     http://roub.net/xul
// @description   Removes the A9 search box from imdb.com pages
// @include       http://*.imdb.com/*
// @include       http://imdb.com/*
// ==/UserScript==
//
// History: http://roub.net/xul/greasemonkey/imdbKillA9search.history.txt
//

(function() {
    var searchTable = document.evaluate("//form[contains(@onsubmit,'submitA9Search')]/ancestor::table",
        document, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);

    if (searchTable.snapshotLength > 0)
    {
        var innerTable = searchTable.snapshotItem(searchTable.snapshotLength - 1);

        innerTable.parentNode.removeChild(innerTable);
    }

})();

