// JavaScript Document

//表示切替最大ボタンの数。TOPページのボタンは一番大きい数字に変更すること。
var id_maximam = "9";

//表示切替ボックス ID名
var area = "vewbox";


function vewImage(selected){
	for (i = 0; i <= id_maximam; i++) {
    if (! document.getElementById(area + i)) continue;
    if (i == selected) {
      document.getElementById(area + i).style.display = "block";
      document.getElementById(area + i).style.position = "";
    } else {
      document.getElementById(area + i).style.display = "none";
      document.getElementById(area + i).style.position = "absolute";
    }
  }

var takasa = (565-565*selected);
var Box = (document.getElementById('main_area').style);
	Box.backgroundPosition='0px '+ takasa +'px';


}

//TOPページ ロード時のスクリプト実行
//-----------------------------------------------------------------------------------------
window.onload = function (){
	vewImage('1');
};
//-----------------------------------------------------------------------------------------
