$(document).ready(function() {
  $('a.category').each(function() {
    $(this).parent().hover(
      function (e) {
          $('a.category').each(function() {
            $(this).next().hide();
          });
          $(this).children("ul").show();
        },
      function (e) {
          $('a.category').each(function() {
            if($("body").attr("class").substring(5)==$(this).parent().attr("class").substring(4))
              $(this).next().show();
            else
              $(this).next().hide();
          });
        }
    );
  });
});

