﻿var imgfile = new Array("http://429event.web.fc2.com/image/btn/btn1.gif", "http://429event.web.fc2.com/image/btn/btn1_over.gif", "http://429event.web.fc2.com/image/btn/btn1_down.gif",
			"http://429event.web.fc2.com/image/btn/btn2.gif", "http://429event.web.fc2.com/image/btn/btn2_over.gif", "http://429event.web.fc2.com/image/btn/btn2_down.gif",
			"http://429event.web.fc2.com/image/btn/btn3.gif", "http://429event.web.fc2.com/image/btn/btn3_over.gif", "http://429event.web.fc2.com/image/btn/btn3_down.gif",
			"http://429event.web.fc2.com/image/btn/btn4.gif", "http://429event.web.fc2.com/image/btn/btn4_over.gif", "http://429event.web.fc2.com/image/btn/btn4_down.gif",
			"http://429event.web.fc2.com/image/btn/btncart.gif", "http://429event.web.fc2.com/image/btn/btncart_over.gif", "http://429event.web.fc2.com/image/btn/btncart_down.gif",
			"http://429event.web.fc2.com/image/btn/b_view.gif", "http://429event.web.fc2.com/image/btn/b_viewover.gif",
			"http://429event.web.fc2.com/image/btn/b_cart.gif", "http://429event.web.fc2.com/image/btn/b_cartover.gif");

var cnt;

var image = new Array(imgfile.length);
for(cnt = 0; cnt < (imgfile.length - 1); cnt++){
	image[cnt] = new Image();
	image[cnt].src = imgfile[cnt];
}

function BtnChange(id, kind){
	window.document.images[id].src  = imgfile[kind - 1];
}
