﻿window.onload = function() {

    $.ajax({
        url: 'request_top.aspx',
        type: 'get',
        data: 'count=0&news=1&apatop=0&campaign=0',
        timeout: 100000,
        cache: false,
        async: true,
        success: function(req) {
            $('#top_news').html(req);
        },
        error: function() {
            alert("読み込めませんでした");
        }
    });

    $.ajax({
        url: 'request_top.aspx',
        type: 'get',
        data: 'count=0&news=0&apatop=1&campaign=0',
        timeout: 100000,
        cache: false,
        async: true,
        success: function(req) {
            $('#top_list').html(req);
        },
        error: function() {
            alert("読み込めませんでした");
        }
    });

};
