function setPos(n)
{	
	Tw=0;
	btn1.style.backgroundColor = "#FFFFFF";
	btn2.style.backgroundColor = "#FFFFFF";
	btn3.style.backgroundColor = "#FFFFFF";
	btn4.style.backgroundColor = "#FFFFFF";
	btn5.style.backgroundColor = "#FFFFFF";
	
	var Atcolor= "#FFFF99";
	switch (n){
	case 1:
		x=139;
		w=191-Tw;
		
		btn1.style.backgroundColor = Atcolor;
		break;
	case 2:
		x=341;
		w=191-Tw;

		btn2.style.backgroundColor = Atcolor;
		break;
	case 3:
		x=543;
		w=90-Tw;
		
		btn3.style.backgroundColor = Atcolor;
		break;
	case 4:
		x=644;
		w=90-Tw;
		
		btn4.style.backgroundColor = Atcolor;
		break;
	case 5:
		x=745;
		w=90-Tw;

		btn5.style.backgroundColor = Atcolor;
		break;
	}
	document.getElementById("Layer3").style.left = x;
	document.getElementById("Layer3").style.width = w;
}

// ポップアップヘルプ
txt = new Array();
txt[1] = '■　従来の噴射材、例えば水、砂、ガラス及びプラスッチック等を革新的な噴射方式によりドライアイス・ペレットに置換えた、全く新しい洗浄システム！';
txt[2] = 'ヘルプ２';
txt[3] = 'ヘルプ３';
txt[4] = 'ヘルプ４';
txt[5] = 'ヘルプ５';
txt[6] = 'ヘルプ６';
txt[7] = 'ヘルプ７';
txt[8] = 'ヘルプ８';

// ヘルプの表示
function popUp(i) {
  ID.innerHTML = txt[i];
  // ヘルプの位置を調整
  ID.style.left = event.x + 10; // 表示するx座標（適度に調整してください）
  ID.style.top = event.y - 5; // 表示するy座標（適度に調整してください）
  ID.style.visibility = "visible";
}

// ヘルプの非表示
function hidePop() {
  ID.style.visibility = "hidden";
}
