function initMenu() {
  $('#nav_categories ul').hide();  var hrefParts = location.href.split('=');  var thisPage = hrefParts[hrefParts.length-1];  $('#nav_categories ul:has(a[href$=' + thisPage + '])').show();
  $('#nav_categories li a').hover(
    function() {
      var checkElement = $(this).next();
      if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
        return false;
        }
      if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
        $('#nav_categories ul:visible').slideUp('normal');
        checkElement.slideDown('normal');
        return false;
        }
      }
    );
  }
$(document).ready(function() {initMenu();});