// menu controls

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

