//コンテキストパス（共通設定）
var context_path = "/";

/**
 * jqueryによる初期設定
 */
function callFootCategory(lang) {
    $(document).ready(function () {
        
        //一旦クリア
        $('#foot_category').empty();
        
        //ログインフォームを制御する
        var obj = {
            type: "GET", 
            dataType: "html",
            cache: false,
            url : context_path + "home/foot_category/" + lang,
            success: function(html) { loadPage(html); }
        };
        $.ajax(obj);
    });
}

/**
 * 読み込んだページを表示する。
 */
function loadPage(html) {
    $('#foot_category').append(html);
}

