/*
* @title 101.jpg.to
* @description jpg.to countup
* @license MIT License
*/
(function () {
var h = location.hostname;
if (!/(\\d+)\.jpg\.to$/.test(h)) location.href = 'http://0.jpg.to/';
n = h.match('(\\d+)\.jpg\.to')[1];
x = parseInt(n);
x++;
location.href = 'http://' + x + '.jpg.to';
})()