/*---- menu ----*/			
/*-- Pageがロードされた際 --*/
$(document).ready(function(){

		$(".menu_area").hover(
		function() {
			$(this).addClass("selected");
			var index = $("li").index(this)+1;

			$(".menu_area").each(function(){
				if ($(this).is(".selected")) {

					$(this).stop(true, false).animate({"width": "150"}, "normal");
					/* 文字と鳥を動かす */
					$(".menu_" + index + "b").show("normal");
					$(".menu_" + index + "b").animate({"left":"-=20","width":"50px","top":"+=15"}, "slow,queue: false");
					//$(".menu_" + index + "a").animate({"top":"+=5"}, "normal,queue: false");
				}else{
					$(this).stop(true, false).animate({"width": "85"}, "normal");
				}
			});
		},
		function() {
			$(".menu_area").each(function(){
				var index = $("li").index(this)+1;
				if ($(this).is(".selected")) {
							/* 文字と鳥を元に戻す */
							$(".menu_" + index + "b").animate({"left":"+=20","width":"0px","top":"-=15"}, "slow,queue: false");
							//$(".menu_" + index + "a").animate({"top":"-=5"}, "normal,queue: false");
				}
				$(this).stop(true, false).animate({"width": "100"}, "normal");

			});

			$(this).removeClass("selected");

		});

});

