// $(function() {
//   $('.b-menu-top li').hover(function(){
//   	$(this).find('ul:first').show();
//   },function(){
//   	//clearTimeout(timerID);
//     //timerID = setTimeout("close_menu()",300);
//     var _this = $(this).find('ul:first')
//     setTimeout(function(){ $(_this).hide(); },300);
//     
//   })
//   
// })

$(function() {
  $('.b-menu-top li').hover(function(){
  	$(this).addClass('on');
  },function(){
  	 $(this).removeClass('on');
    
    
  })
  
})

