$(function ()
{
	if( bInitOpenFlag == false ){
		$(".ypro_plan_category_list").hide();
	}
	$(".ypro_plan_category_show a").click(function ()
	{
		var intIndex = $(".ypro_plan_category_show a").index(this);

		if($(".ypro_plan_category_list:eq("+intIndex+")").is(":hidden"))
		{
			$(".ypro_plan_category_list:eq("+intIndex+")").slideDown("",function() {
				$(".ypro_plan_category_show a:eq("+intIndex+")").html("閉じる");
			});
		}
		else
		{
			$(".ypro_plan_category_list:eq("+intIndex+")").slideUp("",function() {
				$(".ypro_plan_category_show a:eq("+intIndex+")").html("プランを見る");
			});
		}
	});

	var getHash = location.hash;
	getHash = getHash.replace("#","");
	if(getHash != "")
	{
		var aIndex = $("a[@name='"+getHash+"']").index($("a"));
		$(".ypro_plan_category_list:eq("+aIndex+")").slideDown("",function()
		{
			$(".ypro_plan_category_show a:eq("+aIndex+")").html("閉じる");
		});
	}

});

