// ==UserScript==
// @name            StatCounter hide navigation
// @namespace       http://www.statelovesyou.com/aanand/greasemonkey/
// @description     Mouse over the Statcounter logo to show/hide navigation, so you can see your stats without side scrolling
// @include         http://*statcounter.com/project*
// ==/UserScript==

window.hide = function() {
	left.style['display']="none";
	lImg.setAttribute("onMouseover","show()");
}
window.show = function() {
	left.style['display']="block";
	lImg.setAttribute("onMouseover","hide()");
}

window.left = document.evaluate("//td[@class='leftPanelWhite']",document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);
window.lImg = document.images[0];

if (left && lImg) {
	lImg.setAttribute("onMouseover","hide()");
}