jQuery(document).ready(function() {
                    jQuery("#menu li").mouseover(
                        function () {
                            jQuery(".menu-children", this).show()
                        }
                    );
                    
                    jQuery("#menu li").mouseleave(
                        function () {
                            jQuery(".menu-children", this).hide()
                        }
                    );
                });
