﻿$(document).ready(function () {
    //$('#menu>ul>li>ul').find('li:has(ul:not(:empty))>a').append("<span class='arrow'>></span>"); // 为有子菜单的菜单项添加'>'符号 
    $(".navi>li").bind('mouseover', function () {
        if ($(this).children('ul').length != 0) {
            $(this).children('ul').slideDown('fast');
            $(this).children('a').addClass("active");
        }
        //$("#headNav li a").removeClass();
    }).bind('mouseleave', function () {
        if ($(this).children('ul').length != 0) {
            $(this).children('ul').slideUp('fast');
            $(this).children('a').removeClass();
        }
    });

    $("#so_btn").click(function () {
        if ($("#so_text").val() != "") {
            location.href = "SearchList.aspx?key=" + $("#so_text").val() + "&page=0";
        } else {
            alert("请输入搜索关键词!");
            return false;
        }

    })
}); 

