jQuery(document).ready(function()
{
    var hovers = jQuery('#menu > li');
    hovers.hover(function() {
        $(this).addClass('active');
        $(this).children('.dropdown').removeClass('hidden');
    },
    function() {
        hovers.removeClass('active');
        $(this).children('.dropdown').addClass('hidden');
    });
    
});
