$(document).ready(function(){

    $("#access ul li").mouseenter(function () {
		$("ul", this).fadeIn('slow', function() { });
    });
    
    $("#access ul li").mouseleave(function () {
		$("ul", this).fadeOut('fast', function() { });
    });
    
});
