// ==UserScript==
// @name GeoScore banner
// @description Visar Geoscore banner på cachesidorna på geocaching.com.
// @include http://www.geocaching.com/seek/cache_details.aspx?*
// ==/UserScript==
var cachename, GeoScore_place, gcCode;
gcCode = document.getElementById('ctl00_uxWaypointName');
cachename = gcCode.childNodes[0].nodeValue;
tables = document.getElementsByTagName('table');
for (var i = 0; i < tables.length; i++) {
if (tables[i].className.match('CacheInformationTable')) {
GeoScore_place = tables[i];
}
}
GeoScore_place = GeoScore_place.rows[1].childNodes[1];
if (GeoScore_place) {
var td = document.createElement('td');
td.innerHTML = '<a href="http://www.geocaching.se/?page=stats/vote&cache='
+ cachename +
'" rel="nofollow"><img src="http://www.geocaching.se/stats/opinion.php?cache='
+ cachename +
'" alt="Geoscore banner" title="Click to vote!" border="0"></a>';
GeoScore_place.parentNode.insertBefore(td, GeoScore_place.nextSibling);
}