$(function () {
    $('.prodPhoto').imageViewer({
        selectorName: 'themeImageSelector',
        activeClass: 'nowClick'
    });

    // 加入希望購買清單
//    $('a.wishbuy').click(function () {
//        $.ajax({
//            url: this.href,
//            dataType: "json",
//            success: function (json) {
//                if (json.isLogin) {
//                    if (json.repetition) {
//                        alert('此商品已在您的希望購物清單中！');
//                    } else {
//                        alert('加入成功！');
//                        location.href = $frontendVars.baseUrl + '/my/wishbuy';
//                    }
//                } else {
//                    alert('您尚未登入！');
//                    location.href = $frontendVars.baseUrl + '/member/login';
//                }
//            }
//        });
//        return false;
//    });
});