// ==UserScript==
// @name           Google Maps to Wan Wan World
// @namespace      http://a-h.parfe.jp/einfach/
// @include        http://maps.google.*/*
// @include        http://local.google.*/*
// @include        http://www.google.*/lochp?hl=ja&tab=wl*
// ==/UserScript==


(

function() {

var www_link = 'javascript:(function(){var a = gApplication.a.K;window.location="http://world.hatelabo.jp/?x="+a.x+"&y="+a.y;})();';

var header = document.evaluate("//a[@id='link']", document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;
if (header) {
	var atg_link = document.createElement('a');
	atg_link.setAttribute('href', www_link);
	atg_link.innerHTML = '<span style=\"padding-left: 0.5em;\">Go www!</span>';
	header.parentNode.insertBefore(atg_link, header.nextSibling);
}

})();

