		jQuery(document).ready(function($){
		//idが「#inputTxt」のところで、キーボードを押し終わった時に


			$("#greeting").hover(
			function () {
				$("#greeting").attr("style","position:relative;z-index:10;");
				$("#greeting_pop").attr("style","position:absolute;left:0px;top:34px;");
				$("#greeting_pop").slideDown('fast');
			},
			function () {
				$("#greeting_pop").stop();
				$("#greeting_pop").attr("style","display:none;");
			});

			$("#shichiya").hover(
			function () {
				$("#shichiya").attr("style","position:relative;z-index:10;");
				$("#shichiya_pop").attr("style","position:absolute;left:0px;top:34px;");
				$("#shichiya_pop").slideDown('fast');
			},
			function () {
				$("#shichiya_pop").stop();
				$("#shichiya_pop").attr("style","display:none;");
			});

			$("#use").hover(
			function () {
				$("#use").attr("style","position:relative;z-index:10;");
				$("#use_pop").attr("style","position:absolute;left:0px;top:34px;");
				$("#use_pop").slideDown('fast');
			},
			function () {
				$("#use_pop").stop();
				$("#use_pop").attr("style","display:none;");
			});

			$("#youth").hover(
			function () {
				$("#youth").attr("style","position:relative;z-index:10;");
				$("#youth_pop").attr("style","position:absolute;left:0px;top:34px;");
				$("#youth_pop").slideDown('fast');
			},
			function () {
				$("#youth_pop").stop();
				$("#youth_pop").attr("style","display:none;");
			});

			$("#shop").hover(
			function () {
				$("#shop").attr("style","position:relative;z-index:10;");
				$("#shop_pop").attr("style","position:absolute;left:0px;top:34px;");
				$("#shop_pop").slideDown('fast');
			},
			function () {
				$("#shop_pop").stop();
				$("#shop_pop").attr("style","display:none;");
			});

		})//jQuery_End

