// JavaScript Document


	url=new Array();
	title=new Array();

	/*●↓メニューの登録はここから●*/
	url[9]='index.html';	title[9]='2008年度';
	url[8]='2007.html';		title[8]='2007年度';
	url[7]='2006.html';		title[7]='2006年度';
	url[6]='2005.html';		title[6]='2005年度';
	url[5]='2004.html';		title[5]='2004年度';
	url[4]='2003.html';		title[4]='2003年度';
	url[3]='2002.html';		title[3]='2002年度';
	url[2]='2001.html';		title[2]='2001年度';
	url[1]='2000.html';		title[1]='2000年度';
	url[0]='1999.html';		title[0]='1999年度';
	/*●↑メニューの登録はここまで●*/

	var path=window.location.href; 
	
	/*ファイル名の取得*/
	var file=path.substring(path.lastIndexOf('/',path.length)+1,path.length);
	var file2=file.substring(0,4)+'.html';
	if (file2 == '2008.html') {
		file2='index.html';
	}
	
	if (file == '') {
		url[9]='index.html';	title[8]='2008年度';
	}

function year() {
	
	i2=url.length;
	i2=i2-1;

	document.write('<table width="760" border="0" cellspacing="0" cellpadding="0"><tr><td align="center" class="text-s">｜');

	for(i=0; i<10; i++){

		if ((url[i2] == file) | (url[i2] == file2)) {
		document.write('<b>'+title[i2]+'</b>｜');
		}
		else {
		document.write('<a href="'+url[i2]+'">'+title[i2]+'</a>｜');
		}

	i2=i2-1;
	}

	document.write('</td></tr></table>');

}

