// JavaScript Document


	url=new Array();
	title=new Array();

	/*●↓メニューの登録はここから●*/
	url[5]='index.html';		title[5]='2009年度';
	url[4]='2008.html';		title[4]='2008年度';
	url[3]='2007.html';		title[3]='2007年度';
	url[2]='2006.html';		title[2]='2006年度';
	url[1]='2005.html';		title[1]='2005年度';
	url[0]='archive.html';		title[0]='2004年度以前';

	/*●↑メニューの登録はここまで●*/


function year() {

	var path=window.location.href; 
	var file=path.substring(path.lastIndexOf('/',path.length)+1,path.length); 
	i2=url.length;
	i2=i2-1;

	document.write('<dl class="yearlist" style="margin-left:10px; ">');
	for(i=0; i<6; i++){

		if (url[i2] == file)  {
		document.write('<dd><STRONG class="arrow_red">'+title[i2]+'</STRONG></dd>');
}
		else {
		document.write('<dd><A href="'+url[i2]+'" class="arrow_red">'+title[i2]+'</A></dd>');
}

	i2=i2-1;
	}
document.write('</dl>');
	
}
