﻿var setMenu = function(index) {
    var menu = '<ul>' +
    //'<li><a href="/activity/091101/activate_account.htm"' + (index == 1 ? ' id="current"' : '') + '>帐号激活</a></li>' +
    //   '<li><a href="/bouns/"' + (index == 1 ? ' id="current"' : '') + '>装备激活</a></li>' +
    '<li><a href="/bouns/default.htm"' + (index == 2 ? ' id="current"' : '') + '>新手卡激活</a>' +
//    '<ul><li><a href="/bouns/default2.htm"' + (index == 5 ? ' id="current"' : '') + '>星空荣耀卡激活</a></li>' +
//    '<li><a href="/bouns/default3.htm"' + (index == 6 ? ' id="current"' : '') + '>星空畅游卡激活</a></li>' +
//    '<li><a href="/bouns/default4.htm"' + (index == 7 ? ' id="current"' : '') + '>星空奥秘之匣激活</a></li></ul></li>' +
    '<li><a href="/"' + (index == 3 ? ' id="current"' : '') + '>帐号服务</a></li>' +
//    '<li><a href="/profile/figure.htm"' + (index == 4 ? ' id="current"' : '') + '>角色区服查询</a></li>' +

    '</ul>';
    $('#menu').html(menu)
};

$(function() {
    //登录
    var bindLoginPanelLink = function(condition) {
        if (condition === 'login') {
            $('#login').click(function() {
                location.href = '/login.ashx?ReturnUrl=' + encodeURIComponent(location.href);
            });
            $('#register').click(function() {
            location.href = 'http://register.sdo.com/register.asp?from=102&zone=web';
            });
        } else {
            $('#signout').click(function() {
                location.href = '/signout.ashx';
            });
        }
    };
    $.include('/js/jquery/jquery.controller.js');
    $.controller({
        url: '/Server/UserController.ashx',
        method: 'IsLogin',
        error: function() {
            $('#loginPanel').html('<input id="login" value="登录" type="button" class="btn" /><input id="register" value="注册" type="button" class="btn" />');
            bindLoginPanelLink('login');
        },
        success: function(json) {
            $('#loginPanel').html(json.Data + '，欢迎您<input id="signout" value="注销" type="button" class="btn" />');
            bindLoginPanelLink();
        }
    });
});

