$(document).ready(
        function()
        {
            $('#topmenu ul li').hover(
                function(){
                    //$(this).find('ul').slideDown('slow');
                    $(this).find('ul').css('display', 'block');
                }
                ,
                function(){
                    //$(this).find('ul').slideUp('slow');
                    $(this).find('ul').css('display', 'none');
                }
            );
        }
);