jQuery( document ).ready(
    function() {
        jQuery( document ).mousemove(
            function() {
                jQuery('ul.navigation').show('blind', 1000);
                jQuery( document ).unbind('mousemove');
            }
        );
    }
);
