<!--   
    $(document).ready(function(){   
        $("#menuTree h3").hover(   
            function(){   
                $(this).addClass("blue");                  
                $(this).next("div").show("slow");
                $(this).parent().siblings("li").find("div").hide("slow");  
            },   
            function(){}   
        );             
    })   
// -->
