// ==UserScript==
// @name          queerclickgallery direct image link
// @description	  queerclickgallery direct image link
// @namespace     http://www.rhyley.org/gm/
// @include	http://queerclickgallery.com*
// @exclude	http://www.queerclickgallery.com*


var allLinks, thisLink;
allLinks = document.evaluate(
    "//img[contains(@src,'thumb_')]",
    document,
    null,
    XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,
    null);
for (var i = 0; i < allLinks.snapshotLength; i++) {
    thisLink = allLinks.snapshotItem(i);
    thisLink.parentNode.href = thisLink.src.replace('thumb_','');
}
