/* Standard menu script */
$(document).ready(function() {
    if (!window.customPageNavigation) {
        $('.ulPageTreeRoot li').hover(
            function() { //mouseover
                var ul = $(this).find('ul:first');
                ul.show();
                $(this).addClass('liHover');
            },
            function() { //mouseout
                $(this).find('ul:first').hide();
                $(this).removeClass('liHover');
            }
        );
    }
});

