  $(document).ready(function() {
    $('li.category').hover(function() {
      $(this).css('background-color', '#C0C0C0');
      $(this).find('ul').css('display', 'block');

      $(this).find('ul').find('li.category').each(function() {
        $(this).find('ul').css('display', 'none');
      });

    }, function() {
      $(this).css('background-color', '#2F2F2F');
      $(this).find('ul').css('display', 'none');
    })
  });
