  $(function(){
  /* mainnav */
   $("ul.navi ul").parent().hoverIntent({
        over: function(){
            $(this).children("a").addClass("hover").siblings("ul").show();
        },
        timeout: 300,
        out: function(){
            $(this).children("a").removeClass("hover").siblings("ul").hide();
        }
    });
    
});

