// expand the height of the menu

function expandMenu(){

    $(this).find('ul').slideDown();

}

// reset the height of the menu

function resetMenu() {

    $(this).find('ul').slideUp();

}

 $(document).ready(function() {

    $("#menu>ul>li").hoverIntent(expandMenu, resetMenu);

});
