$(function() {
  $('.left_menu_container').find('div').hover(
    function() {
      if (!this.className.match(/_nsel$/) && !this.className.match(/_sel$/)) this.className = this.className+'_sel';
    },
    function() {
      if (!this.className.match(/_nsel$/) && !this.className.match(/_nsel$/)) this.className = this.className.replace('_sel', '');
    }
  )
})
