jQuery(document).ready(function() {

    jQuery('#access ul li').children('ul').css({opacity: 0});

    jQuery('#access ul li').hover( show_menu, hide_menu );
    
    function show_menu() {
        jQuery(this).children('ul').stop().show().animate({opacity: 1}, 700);
    }
    
    function hide_menu() {
        jQuery(this).children('ul').stop().animate({opacity: 0}, 500, function() {jQuery(this).hide()} );
    }
    
    jQuery('#access li').hover( show_over, hide_over );
    
    function show_over() {
        jQuery(this).children('a').stop().animate({opacity: 0.6}, 100, function() {
            jQuery(this).animate({opacity: 1}, 600);
        });
    }
    
    function hide_over() {
        jQuery(this).children('a').stop().animate({opacity: 0.5}, 10, function() {
            jQuery(this).animate({opacity: 1}, 500);
        });
    }
});
