jQuery(function(){
  jQuery('.menu').hover(
    function() {jQuery(this).children('li').children('a.current').removeClass('current').addClass('current0')},
    function() {jQuery(this).children('li').children('a.current0').removeClass('current0').addClass('current')}
  );
})


