7d6 < var spyDivs = new Array(); 10a10 > spy.epoch = new Date(1970, 0, 1); 15c15 < --- > 42,43c42,43 < var d = new Date(); < return Math.round(d.getTime() / 1000); --- > var now = new Date(); > return Math.floor((now - spy.epoch) / 1000); 125,127d124 < if(spyDivs[e.id]) { < window.clearInterval(spyDivs[e.id]); < } 132c129 < $.get(o.ajax, { 'timestamp': timestamp, 'r': Math.random() }, function(r) { --- > $.post(o.ajax, { 'timestamp': timestamp }, function(r) { 136c133 < } --- > } 138d134 < spyDivs[e.id] = spy.ajaxTimer;