$(function(){ $('#mmenu01').hover(function(){ $(this).html("撮影メニュー"); },function(){ $(this).html("PHOTO MENU"); } ); $('#mmenu02').hover(function(){ $(this).html("スタジオ情報"); },function(){ $(this).html("STUDIO"); } ); $('#mmenu03').hover(function(){ $(this).html("フォトギャラリー"); },function(){ $(this).html("GALLERY"); } ); $('#mmenu04').hover(function(){ $(this).html("商品紹介"); },function(){ $(this).html("PHOTO ITEM"); } ); $('#mmenu05').hover(function(){ $(this).html("採用情報"); },function(){ $(this).html("RECRUIT"); } ); $('#mmenu06').hover(function(){ $(this).html("ウェブ予約"); },function(){ $(this).html("RESERVATION"); } ); $('.closeBtn01').on('click', function() { $(this).parent().parent().parent('.menu__second-level').stop().fadeOut(); }); $('.item01').hover(function() { $(this).next('.menu__second-level').stop().fadeIn(); }); });