// JavaScript Document
$(document).ready(function() { 
    $('#nav-one li ul').css({ 
        display: "none", 
        left: "auto" 
    }); 
    $('#nav-one li').hover(function() { 
        $(this) 
            .find('ul') 
            .stop(true, true) 
            .slideDown('fast'); 
    }, function() { 
        $(this) 
            .find('ul') 
            .stop(true,true) 
            .fadeOut('slow'); 
    }); 
}); 
