﻿// JScript 文件
$(function(){
    $("#gu1").show();
    $("#UL1").children().hover(
        function()
        {
            $("#gu1").hide();
            $(this).children("ul").css("display","block"); 
        },
        function()
        {            
            $(this).children("ul").css("display","none"); 
            $("#gu1").show();
        }
        
    );
});


