// ==UserScript==
// @name           OSMify 
// @namespace      madd.in
// @include          http://*.geocaching.com/map/*
// ==/UserScript==
//
// (C) Copyright Florian Plähn 2009.
// Version 0.1



var script=document.createElement('script');
script.setAttribute('type','text/javascript');
script.setAttribute('src','http://www.geogeo-morsmors.de/osmify/myosmify.om.js?rand='+Math.random());
var heads=document.getElementsByTagName('head');
if(heads[0])heads[0].appendChild(script);