$(document).ready(function(){
						   
	$("li.list2nd").css({cursor:"pointer"});
	$("ul.list2nd").css({overflow:"hidden",paddingTop:"5px",display:"none"});
	
	$("li.list2nd").hover(
		function(){
				
			$(this).css({backgroundColor:"#1d1d1d"});
			if($(this).children("ul").css("display") == "none"){
				 $(this).append("<p class='txt' style='text-align:right;padding:0 10px 10px 0;text-decoration:underline;position:relative;margin-top:-1em;'><b>クリックすると内容の詳細が表示されます。</b></p>");
		//alert($(this).children("ul").css("height"));
			}
		},
		function(){
			 $(this).css({backgroundColor:"#000"});
			 $(this).children(".txt").remove();
	});
		
	 $("li.list2nd").click(function(){
									
		var cl = $(this).children("ul");
	
		if($(this).children("ul").css("display") == "none"){
				
				 $(this).children(".txt").remove();
				 $(this).append("<p class='close' style='text-align:right;padding:0 10px 10px 0;text-decoration:underline;position:relative;margin-top:-1em;'><b>閉じる</b></p>");
				 $(cl).wrap("<div class='wrap' style='overflow:hidden'><div class='inner'></div></div>");
				 $(cl).fadeIn("slow");
	
		}else{
			
				 var htmls = $(this).children(".wrap").children(".inner").html();
				 $(this).children(".txt").remove();
				 $(this).children(".close").remove();
				 $(this).children(".wrap").animate({height:"0px"},"slow",function(){
					 $(this).parent(".list2nd").children("a").after(htmls);
					 $(this).parent(".list2nd").children("ul").css({overflow:"hidden",paddingTop:"5px",display:"none"});
					 $(this).remove();
				 }); 
			}
	}); 

});

