// ==UserScript==
// @name           twitpic full jump Automatic
// @namespace      http://auviw.com/
// @description    twitpic full jump Automatic
// @include        http://twitpic.com/*/full
// ==/UserScript==


(function() {

    var anchors = document.getElementsByTagName('img');
    for (var i = 0; i < anchors.length; i++) {
        if (anchors[i].src.match("*.amazonaws.com/twitpic/photos/full/*")) {
            location.href = anchors[i].src;
            break;
        }
    }

})();
