(function($) {
    $(document).ready(function() {

        $('#nav ul li ul').css('opacity', 0);
        $('#nav ul li').hover(function() {
            $('ul', this).stop().animate({ opacity : 1 }, 250);
            $('ul', this).css('display', 'inline');
        }, function () {
            $('ul', this).stop().animate({ opacity : 0 }, 250);
            $('ul', this).css('display', 'none');
        });

    }); // end $
})(jQuery); // end function($)
