$(function(){
	$('#menu-box span').mouseenter(function() {
		if(!$(this).hasClass('current'))
			$(this).addClass('ons');
	}).mouseleave(function() {
		if(!$(this).hasClass('current'))
			$(this).removeClass('ons');
	});
});


