$(function() {
   if ($.browser.msie && $.browser.version < 9) $('#menu>ul>li').contents().filter(function() { return (this.nodeType == 3); }).wrap('<span />');
   $('#menu ul ul a').focus(function() { $(this).parent().parent().parent().attr('aria-expanded', true).addClass('expanded'); }).blur(function() { $(this).parent().parent().parent().attr('aria-expanded', false).removeClass('expanded'); });
   $('#menu>ul>li[aria-expanded]').hover(function() { $(this).attr('aria-expanded', true); }, function() { $(this).attr('aria-expanded', false); });
});
