
//画像ロード

	var img = new Array();
	img[0] = new Image();  img[0].src = "img/bot_inf_on.gif";
	img[1] = new Image();  img[1].src = "img/bot_acc_on.gif";
	img[2] = new Image();  img[2].src = "img/bot_lin_on.gif";
	img[3] = new Image();  img[3].src = "img/bot_spa_on.gif";
	img[4] = new Image();  img[4].src = "img/bot_aro_on.gif";
	img[5] = new Image();  img[5].src = "img/bot_dec_on.gif";
	img[6] = new Image();  img[6].src = "img/bot_ban01_on.gif";
	img[7] = new Image();  img[7].src = "img/bot_ban02_on.gif";

//リンク関数01
	function overevent(n){
		imgname="img/bot_" + n + "_on.gif";
		document.images["bot_" + n].src=imgname;
	}
	function outevent(n){
		imgname="img/bot_" + n + "_of.gif";
		document.images["bot_" + n].src=imgname;
	}
