(function ($) {
    //your existing code
$(document).ready(function(){
  $('#inexor-menu li').hover(
    function(){
      $('ul:first', $(this)).show();
    },
    function(){
      $('ul', $(this)).hide();
    }
  );
});
}(jQuery));

(function ($) {
    //your existing code
$(document).ready(function(){
  $('#inexor-menu li li').hover(
    function(){
      $('#inexor-menu li.f').hover();
    },
    function(){
      $('#inexor-menu li.f');
    }
  );
});
}(jQuery));

;

