/* ********************************

	みなとみらい線
	acc-top.js
	
	/station/index.html
	
********************************* */

$(function(){ 
	
	$("ul.acc > li > a.acc-li").each(function(index){ 					  
  
  		//var Ul = $(this).next();
		//if($(Ul).attr("class") != "list-open") $(this).next().hide(); 
		
		
		//if(index != 0) $(this).next().hide(); 
		
		$(this).next().hide(); 
		
		
		$(this).click(function(){ 
							  

			//クリックしたもの以外を閉じる
			
			$(this).parent().siblings().children("ul:visible").hide();
			//$(this).parent().siblings().children("ul:visible").hide();
			
			//クリックで開閉
			var this_ul = $(this).next();
			this_ul.toggle();
			//this_ul.toggle();

			
         	return false; 
		 
       });
	   
     }); 

}); 
