$(function(){
    $("#gu").show();
    $("#UL1").children().hover(
        function()
        {
             $("#gu").hide();
             $(this).children("ul").css("display","block"); 
        },
        function()
        { 
        
            $(this).children("ul").css("display","none"); 
            $("#gu").show();
        }

    );
});

