//c=console.log;
$(function() {
  $('li.level1').mouseover(function(){ $(this).addClass('hover')} )
                .mouseout(function(){ $(this).removeClass('hover')} )
});              