function mallLayerCategoryMenu() {

   $('#widgetMallLayerCategoryMenu').addClass('none');
   $('#widgetMallLayerCategoryMenu').find('>li').each(function() {

      $(this).find('ul>li>ul').each(function() { this.style.display = 'none'; });
      this.onmouseover = function() { this.className = 'over'; }
      this.onmouseout = function() { this.className = '';  }

   });

}

$(document).ready(function() { mallLayerCategoryMenu(); });
