<!--
<!--Top image の切り替え-->
function changeimgs(){
	lmgList = new Array(
		new Array("images/image03.jpg"),
		new Array("images/image06.jpg"),
		new Array("images/image07.jpg"),
		new Array("images/image05.jpg")
	)
	rndNum = Math.floor(Math.random() * lmgList.length);
	document.write("<img src="+lmgList[rndNum]+" width='358' height='263' name='topimage' alt='学校イメージ'>");
}
//-->