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

