
    var com_id;

    function run_refresh(id) {
       com_id = id;
       if(!$("#auto-refresh").attr('checked')) return;
       setTimeout(refresh_result, 5000);
    }

    function refresh_result() {
        if(!$("#auto-refresh").attr('checked')) return;
        if($("#ajaxprocess").css('display') != 'none') return;
        $("#ajaxprocess").show();
        $.get("competitions-result/" + com_id + "/ajax", function(data) {
            $("#ajaxprocess").hide();
            $("#content").html(data);
            $("#auto-refresh").attr('checked', true);
            setTimeout(refresh_result, 5000);
        });
    }
