// ==UserScript==
// @name            Rum and Monkey Ad Removal
// @description     Duh.
// @author          Scott
// @version         0.1 (5 August 2006)
// @include         http://rumandmonkey.com/*
// ==/UserScript==

var ad = document.evaluate('//ul', document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
ad.snapshotItem(0).parentNode.removeChild(ad.snapshotItem(0));

