﻿$(document).ready(function () {
    var index = 1;
    $(".wordList").each(
        function () {
            $(this).click(function () {
                $(".Menu_Over").removeClass().addClass('Menu_Default');
                $(this).children().removeClass().addClass('Menu_Over').children().show();
                //事件
                $('.Content').hide();
                $('#' + $(this).attr('id') + 'Content').show();
            });
            var id = QueryString('id');
            if (id != null)
                $('#div' + id).click();
            else {
                if (index == 1)
                    $(this).click();
                index += 1;
            }
        }
    )
});
    