﻿/*@cc_on
var doc = document;
eval('var document = doc');
@*/

window.onload = function() {

    $('#map_top_flash').flash(
    {
        src: 'img/map.swf',
        width: 700,
        height: 350,
        wmode: "transparent"
    },
    { version: 8 }
    );

    $.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("読み込めませんでした");
        }
    });
    
};