// ==UserScript==
// @name           gc-remove-menu
// @namespace      http://www.uncleowen.de/
// @include        http://www.geocaching.com/map*
// ==/UserScript==

var allDivs, thisDiv;
allDivs = document.evaluate(
	"//div[@class='yui-b']",
	document,
	null,
	XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,
	null);

thisDiv = allDivs.snapshotItem(1);
thisDiv.style.display = 'none';

thisDiv = allDivs.snapshotItem(0);
//This sux. If anyone knows of a better way to do this, tell me.
thisDiv.style.setProperty('margin-left', '1.5em', 'important');

thisDiv = document.getElementById('bd');
thisDiv.style.backgroundImage = 'none';
