//「IndPage[0]〜」の部分に並び順でURLを指定する。カッコの中の数字は0から始まる連番になる。
//
//それぞれのHTMLファイルのリンク先に指定している引数（「javascript:GotoNext(n)」と「javascript:GotoPre(n)」の "n" のこと）に並び順に
//0から始まる整数を順番に指定する。
//
//IndPage[]の数字とjavascript:GotoNext()とjavascript:GotoPre()の数字が一致しているようにする。

IndPage = new Array();
	IndPage[0] = "http://www.antena-net.jp/premiumoffice/actus.html";
	IndPage[1] = "http://www.antena-net.jp/premiumoffice/takahashihiroshi.html";
	IndPage[2] = "http://www.antena-net.jp/premiumoffice/kametani.html";
	IndPage[3] = "http://www.antena-net.jp/premiumoffice/fairsolution.html";
	IndPage[4] = "http://www.antena-net.jp/premiumoffice/satoh-h.html";
	IndPage[5] = "http://www.antena-net.jp/premiumoffice/hayashi.html";
	IndPage[6] = "http://www.antena-net.jp/premiumoffice/osawa.html";
	IndPage[7] = "http://www.antena-net.jp/premiumoffice/kamakura.html";	
	IndPage[8] = "http://www.antena-net.jp/premiumoffice/hayashi.html";	
	IndPage[9] = "http://www.antena-net.jp/premiumoffice/satake.html";	
	IndPage[10] = "http://www.antena-net.jp/premiumoffice/tateno.html";	
a = IndPage.length;

function GotoNext(n) {
	if (n+1 < a)
		document.location = IndPage[n+1];
	if (n+1 >= a)
		document.location = IndPage[0];
}

function GotoPre(n) {
	if (n == 0)
		document.location = IndPage[a-1];
	else
		document.location = IndPage[n-1];
}