jQuery(function($){
    $(".children").hide();
    $(".page_item").hover(
        function () {
            $(this).find(".children").show();
        },
        function () {
            $(this).find(".children").hide();
        }
    );
    $(".page_item li").hover(
        function () {
            $(this).css("background-color", "#333333");
        },
        function () {
            $(this).css("background-color", "#666666");
        }
    );
});
