/*
* @title clickitl8er
* @description click it later
* @include http://*
* @license MIT License
* @require jQuery
*/
(function(){
$('a').click(function(){
var href = $(this).attr('href');
setTimeout(function(){
location.href = href;
}, (5 * 60 + 30) * 1000);
return false;
});
})();