var n = 11  //リンク数-1
var links = new Array(
"index.html","トップページ",
"items1.html","給湯器",
"items2.html","ガス器具",
"fuel.html","燃料販売",
"services.html","ミネラルウォータ＆浄水器",
"construction.html","工事",
"emergency.html","緊急のお客様",
"company.html","会社案内",
"staff.html","スタッフ",
"form.html","給湯器のお見積もり",
"form2.html","給湯器の修理のご依頼",
"form3.html","お問い合わせ"
);

document.write('<div class="box"><ul>');
for (i=0;i<=n*2;i=i+2){
document.write('<li><a href="  '+links[i]+'">'+links[i+1]+'</a></li>');
};
document.write('</div></ul>');
