// JavaScript Document

// スケジュール画像
img=new Array();
img[0]="images/legend_0.jpg";
img[1]="images/legend_1.jpg";
img[2]="images/legend_2.jpg";
img[3]="images/legend_3.jpg";
img[4]="images/legend_4.jpg";
img[5]="images/legend_5.jpg";

// 画像表示切り替え用スクリプト
function Legend(index){
	document.legendimg.src=img[index];
}

