(function($){
  $(function(){
    $.ajax({
      cache: false,
      type: "GET",
      url: "./release/index.cgi",
      data: "c=top",
      success: function(response){
        $('#release-body').html(response);
      }
    });
    $.ajax({
      cache: false,
      type: "GET",
      url: "./release/oshirase.cgi",
      data: "c=top",
      success: function(response){
        $('#oshirase-body').html(response);
      }
    });
  });
})(jQuery);

