/*

jQuery(document).ready(function() {
    jQuery('#nav > ul > li').hover(function () {
        jQuery(this).children('ul').slideDown('slow');
    },
    function () {
        jQuery(this).children('ul').slideUp('slow');
    });
});


*/

jQuery(document).ready(function() {
    jQuery('#nav > ul > li').hover(function () {
        jQuery(this).children('ul').show();
    },
    function () {
        jQuery(this).children('ul').hide();
    });
});

