$(function()
{

	// menu //
	$('.li0').mouseenter(function()
	{
		if(!$(this).hasClass('current_0')){$(this).addClass('current0');}
		$(this).find('.div-menu-1').show();
	});
	$('.li0').mouseleave(function()
	{
		if(!$(this).hasClass('current_0')){$(this).removeClass('current0');}
		$(this).find('.div-menu-1').hide();
	});
	
	$('.li1').mouseenter(function(){$(this).addClass('current1');$(this).find('div.div-menu-2').show();});
	$('.li1').mouseleave(function(){$(this).removeClass('current1');$(this).find('div.div-menu-2').hide();});
	
});

