refresh_offer_count();

//$(document).ready(function (){
//    setTimeout(function(){
//        refresh_offer_count();
//    }, 30000);
//});

function refresh_offer_count() {
    $.ajax({
        url: 'offer_total_count_ajax?&p=1&pp=100',
        type: 'POST',
        beforeSend: function(){ },
        success: function (data){
            if (data > 0) {
                $('#menu_change_count_offer').text(' ('+data+')');
            } else {
                $('#menu_change_count_offer').text('');
            }
        }
    });
}
