$(document).ready(function () {
    getCmsNewsList('1');
});

function getCmsNewsList(areaId) {
    // Ajaxリクエストを送信する
    $.get($('#webroot').val() + 'portal_tops/cmsNewsList/' + areaId,
        function(data) {
            $('.country_news').html(data);
        }
        );

    i = 1;
    // タブ画像を切り替え
    $('.tabImage').each(function() {
        if(i == areaId) {
            $(this).attr('src', $('#webroot').val() + 'img/portal/country/tab0' + i + '_on.gif');
        } else {
            $(this).attr('src', $('#webroot').val() + 'img/portal/country/tab0' + i + '_off.gif');
        }
        i++;
    });

}
