if (document.images) {

	// 設定開始（使用する画像を設定してください）

	// 通常の画像
	var img0 = new Image();
	img0.src = "../images/allow.jpg";

	// ポイント時の画像1
	var img1 = new Image();
	img1.src = "../images/allow_ov.jpg";
    
	// 通常の画像2
	var img2 = new Image();
	img2.src = "../images/allow2.jpg";

	// ポイント時の画像2
	var img3 = new Image();
	img3.src = "../images/allow2_ov.jpg";
    

    

	// 設定終了

}

// ポイント時の処理
function On(name, tgt_img) {

	if (document.images) {

		document.images[tgt_img].src = eval(name + '.src');

	}

}

// 放した時の処理
function Off(name, tgt_img) {

	if (document.images) {

		document.images[tgt_img].src = eval(name + '.src');

	}

}

function change(catD, mIMG, subIMG)
{
    sCat = "../images/"+catD+"/product/";
    iObj = document.images[mIMG];
	iObj.src = sCat+subIMG+".jpg";
}

