
/* DOM構築後に実行 */
//$(mouseoverImage);
//$(walletCharge);
//$(guideSwitch);

/* ご利用ガイド- すべてを表示・非表示スイッチ */
function guideSwitch() {
    $(".side_bar .side_tb02 .open .switch").click(function () { 
                 $(".side_bar .side_tb02 .open").slideUp('fast');
                 $(".side_bar .side_tb02 .close").slideDown('fast');
    });
    $(".side_bar .side_tb02 .close .switch").click(function () { 
                 $(".side_bar .side_tb02 .open").slideDown('fast');
                 $(".side_bar .side_tb02 .close").slideUp('fast');
    });
}

/* マウスオーバー画像切り替え */
function mouseoverImage() {
    $("img").hover(
        function () { 
            if($(this).attr("class") != "off"){
                this.src = this.src.replace("_off","_on");
            }
        },
        function () { 
                if($(this).attr("class") != "on"){
                        this.src = this.src.replace("_on","_off");
                }
        });
}

/* ウォレットをチャージ→カートを更新 */
function walletCharge() {
    $(".calame .cart_reload").hide();
    $(".calame .wallet_charge a").click(
        function () { 
                 $(".calame .wallet_charge").hide();
                 $(".calame .cart_reload").show();
    });
}
