$( function() {

  // キャッシュ対応
  $.ajaxSetup({ cache: false });

   $.ajax({
    'url': 'news/index.cgi',
      'data': {
        c  :'top'
      },
     'type': 'post',
     success: function (data) {
        $('#topics_list').html(data);
     }
   });

});

