$(function(){
	$(".shop_info").fadeOut(0.1);
	//$(".shop_data img.shop").toggle(function(){	// 2011.10.04 220
	$(".shop_data p.title").toggle(function(){
		$(this).animate({
			width : 270,							// 2011.10.04 220
			height : 36								// 2011.10.04 110
		},
		500,null,
		function(){
			//$(this).parent().find(".shop_info").fadeIn(500);
			var idx = $(".shop_data p.title").index(this);
			idx = idx / 2;		//※１つの店舗には、２つのtitleがあるため
			$($(".shop_info").get(idx)).fadeIn(500);
		});
	},function(){
		//$(this).parent().find(".shop_info").fadeOut(200,	// 2011.10.04 220
		var idx = $(".shop_data p.title").index(this);
		idx = idx / 2;		//※１つの店舗には、２つのtitleがあるため
		$($(".shop_info").get(idx)).fadeOut(200,
			function(){
				$(this).parent().find("img.shop").animate({
					width : 220,
					height : 110
				}, 200);
			}
		);
	});
});



$(function(){
	$("#kindArea_in").fadeOut(0.1);
	$("#kindArea img.kind").toggle(function(){
		$(this).animate({
			width : 115,
			height : 48
		},
		500,null,
		function(){
			$(this).parent().find("#kindArea_in").fadeIn(500);
		});
	},function(){
		$(this).parent().find("#kindArea_in").fadeOut(200,
			function(){
				$(this).parent().find("img.kind").animate({
					width : 115,
					height : 48
				}, 200);
			}
		);
	});
});



$(function(){
	$(".blog_info").fadeOut(0.1);
	$(".blog_list img.person").toggle(function(){
		$(this).animate({
			width : 100,
			height : 100
		},
		500,null,
		function(){
			$(this).parent().find(".blog_info").fadeIn(500);
		});
	},function(){
		$(this).parent().find(".blog_info").fadeOut(200,
			function(){
				$(this).parent().find("img.person").animate({
					width : 55,
					height : 55
				}, 200);
			}
		);
	});
});
