/* ********************************

	みなとみらい線
	station-tab.js
	
	/station/***
	
********************************* */


$(function(){
	
	var loc = String(document.location);
	
	
	if(loc.match(/.+\/$/)){
		loc += "index.html";
	}	
	
	
	$("#s-tabnav > ul > li > a").each(function(){
		
		//alert(this.href);

		if(loc.indexOf(String(this.href)) == 0){
			$(this).addClass("nav-on");
		}
	});
});


