/* ********************************

	みなとみらい線
	acc-nihonodori.js
	
	/station/nihonodori/***
	
********************************* */

$(function(){ 
	
	$("ul.acc > li > a.acc-li").each(function(index){ 					  
  		
		
		if(index != 4) $(this).next().hide(); 
		
		
		$(this).click(function(){ 
							  
			
			$(this).parent().siblings().children("ul:visible").hide();
			
			var this_ul = $(this).next();
			this_ul.toggle();

			
         	return false; 
		 
       });
	   
     }); 

}); 

