$(document).ready(function(){
    
    $("li[id^=ad_]").live('click', function(){

        advertID          = $(this).attr('id').replace('ad_', '');

        var url_address   = "http://"+window.location.hostname+"/modules/mod_blog_advert_box/scripts/ajax/update.php?";

        var post_data     = "advertID="+advertID;

        $.ajax({
            type: 'POST',
            url:   url_address,
            data:  post_data,
            success: function(data) {
               
            }                
        });

    });
});
