$(document).ready(function() {
  $('.category').find('li.level0').each(function(){
    $(this).hover(
      function () {
        $(this).addClass('catSel');
      }, 
      function () {
        $(this).removeClass('catSel');
      }
    )
  });
   
  $('.partners').find('li').each(function(){
    $(this).hover(
      function () {
        $(this).find('p').css('display','block');
      }, 
      function () {
        $(this).find('p').css('display','none');
      }
    )
  });

  $('.path').find('li').each(function(){
    $(this).hover(
      function () {
        $(this).find('p').css('display','block');
      }, 
      function () {
        $(this).find('p').css('display','none');
      }
    )
  });
  $('.category>ul>li:last-child').remove();
});


