// JavaScript Document

//表示切替最大ボタンの数
var id_max = "10";

//表示切替ボックス ID名
var bpref = "box";

//表示切替ボタン ID名
var hpref = "bottan";

function seltab(selected) {
  for (i = 0; i <= id_max; i++) {
    if (! document.getElementById(bpref + i)) continue;
    if (i == selected) {
      document.getElementById(bpref + i).style.visibility = "visible";
      document.getElementById(hpref + i).className = "open";
    } else {
      document.getElementById(bpref + i).style.visibility = "hidden";
      document.getElementById(hpref + i).className = "close";
    }
  }
}

//TOPページ ロード時のスクリプト実行
//-----------------------------------------------------------------------------------------
window.onload = function (){
	seltab('0');
};
//-----------------------------------------------------------------------------------------