$(document).ready(function(){
	var linkList = ['/feature/senior/010/index.html','/feature/senior/009/index.html','/feature/senior/008/index.html','/feature/senior/007/index.html','/feature/senior/006/index.html','/feature/senior/005/index.html','/feature/senior/004/index.html','/feature/senior/003/index.html','/feature/senior/002/index.html','/feature/senior/001/index.html'];

	var regexp = new RegExp('http(s)?://.*?(/.*?.html).*?');
	location.href.match(regexp)

	var nowLink = RegExp.$2;
	var nowPosition = -1;
	for( var i = 0; i < linkList.length ; i++ ){
		if( linkList[i] == nowLink ){
			nowPosition = i;
			break;
		}
	}
	if( nowPosition == -1 ){
		return ;
	}

	var backLinkSpan = document.getElementById('system_bklist_backlink');
	backLinkSpan.innerHTML = (nowPosition < linkList.length - 1) ? '<a href="'+linkList[nowPosition+1]+'">前の記事</a>' : '前の記事';
	var nextLinkSpan = document.getElementById('system_bklist_nextlink');
	nextLinkSpan.innerHTML = (0 < nowPosition) ? '<a href="'+linkList[nowPosition-1]+'">次の記事</a>' : '次の記事' ;
});
