$(document).ready(function () {    

    $('#navhome li').hover(
        function () {
            //show its submenu
            $('ol', this).fadeIn(400);
            $('ol', this).slideDown(400);


        }, 
        function () {
            //hide its submenu
            $('ol', this).slideUp(400);         
        }
    );

});

