jQuery(document).ready(function() {
    jQuery('#top-menu ul.navigation ul').hide();
    jQuery('#top-menu ul.navigation li').hover(function() {
        jQuery(this).children('ul').fadeIn();
    }, function() {
        jQuery(this).children('ul').fadeOut();
    })
})
