$(document).ready(function () {
    loadmsg();
    setInterval(loadmsg, 30000);
});
//导航切换
$('#nav_ul > li').mouseover(function () {
    $(this).removeClass().addClass('nav_' + ($(this).index() + 1) + '_2');
});
$('#nav_ul > li').mouseout(function () {
    $(this).removeClass().addClass('nav_' + ($(this).index() + 1));
});
//个人信息部分
$('#ico_ul > li').mouseover(function () {
    $(this).removeClass().addClass('ico_' + ($(this).index() + 1));
    if ($(this).index() == 5) {
        $('#more_li').show();
    }
});
$('#ico_ul > li').mouseout(function () {
    if ($(this).index() != 5) { $(this).removeClass(); }
});
$('#more_li').mouseout(function () {
    $(this).hide(); $('#ico6').removeClass();
});
$('#ico_ul > li').click(function () {
    switch ($(this).index()) {
        case 0: location.href = '#'; break; //消息
        case 1: location.href = '#'; break; //消息
        case 2: location.href = '#'; break; //消息
        case 3: location.href = '#'; break; //消息
        case 4: location.href = '/Logout.aspx'; break; //消息
    }
});
