


// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Some silly keep alive mechanisme
// => needs the JQ.js + jueryTimers.js to be included first
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


$(document).ready(function () {
    $(document).everyTime(30000, function (i) {
        var rnd = Math.floor(Math.random() * 100001);
        $.ajax({
            url: "keepalive.php?x=" + rnd,
            success: function (a) {
                $(".keepalive").html(a);
            }
        });
    }, 0);
});

