// ==UserScript==
// @namespace       Akku
// @name            hitflip_unpause.user.js 
// @require	        http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js
// @description     Auto-unpauses all your items once per hour if you have the "have.php" open (your library). Find updates on http://www.ithoughts.de/downloads/hitflip_unpause.user.js
// @include         http://www.hitflip.de/have.php
// ==/UserScript==


$("document").ready(function(){
	window.setTimeout(function (){$('#offer_all_units_-').submit();}, 360000);
});


