// TOPページ専用　JavaScript
function imageChange(){


/*
imgURL[0]  = '<img src="images/top2009_01island.jpg" alt="アイランドタワースカイクラブ" width="332" height="500" />';
imgURL[1]  = '<img src="images/top2009_02hukubank.jpg" alt="福岡銀行折尾支店" width="700" height="466" />';
imgURL[2]  = '<img src="images/top2009_03grandjpg" alt="グランドメゾンデザインセンター薬院" width="332" height="500" />';;
imgURL[3]  = '<img src="images/top2009_04aeon.jpg" alt="イオンモールMiELL（ミエル）都城駅前" width="398" height="500" />'
imgURL[4]  = '<img src="images/top2009_05mashiki.jpg" alt="益城町交流情報センター" width="700" height="415" />';
imgURL[5]  = '<img src="images/top2009_06nakatsucity.jpg" alt="中津市総合体育館（ダイハツ九州アリーナ）" width="700" height="468" />';
imgURL[6]  = '<img src="images/top2009_07anperena.jpg" alt="アンペレーナ百道" width="700" height="459" />';
imgURL[7]  = '<img src="images/top2009_08fukuoka.jpg" alt="福岡フィナンシャルグループ本社ビル" width="700" height="466" />';

captionArray[0]  = 'アイランドタワースカイクラブ';
captionArray[1]  = '福岡銀行折尾支店';
captionArray[2]  = 'グランドメゾンデザインセンター薬院';
captionArray[3]  = 'イオンモールMiELL（ミエル）都城駅前';
captionArray[4]  = '益城町交流情報センター';
captionArray[5]  = '中津市総合体育館（ダイハツ九州アリーナ）';
captionArray[6]  = 'アンペレーナ百道';
captionArray[7]  = '福岡フィナンシャルグループ本社ビル';
*/

imgURL  = new Array(
'<img src="H21images/H21-1-1.jpg" alt="東比恵ビジネスセンター" width="500" height="415" />',
'<img src="H21images/H21-1-2.jpg" alt="東比恵ビジネスセンター" width="500" height="333" />',
'<img src="H21images/H21-2-1.jpg" alt="九州大学（伊都）総合学習プラザ" width="500" height="400" />',
'<img src="H21images/H21-2-2.jpg" alt="九州大学（伊都）総合学習プラザ" width="333" height="500" />',
'<img src="H21images/H21-3-1.jpg" alt="東宝アルバビル（リッチモンドホテル鹿児島天文館）" width="372" height="500" />',
'<img src="H21images/H21-3-2.jpg" alt="東宝アルバビル（リッチモンドホテル鹿児島天文館）" width="500" height="372" />',
'<img src="H21images/H21-4-1.jpg" alt="ジオ・イニシア博多駅前" width="500" height="333" />',
'<img src="H21images/H21-4-2.jpg" alt="ジオ・イニシア博多駅前" width="500" height="333" />',
'<img src="H21images/H21-5-1.jpg" alt="アクロス福岡" width="500" height="334" />',
'<img src="H21images/H21-5-2.jpg" alt="アクロス福岡" width="498" height="500" />',
'<img src="H21images/H21-6-1.jpg" alt="ａｍ/ｐｍ博多駅中央改札口店" width="500" height="331" />',
'<img src="H21images/H21-6-2.jpg" alt="ａｍ/ｐｍ博多駅中央改札口店" width="500" height="366" />',
'<img src="H21images/H21-7-1.jpg" alt="みやき町立三根中学校" width="500" height="333" />',
'<img src="H21images/H21-7-2.jpg" alt="みやき町立三根中学校" width="500" height="333" />');

captionArray = new Array(
"東比恵ビジネスセンター",
"東比恵ビジネスセンター",
"九州大学（伊都）総合学習プラザ",
"九州大学（伊都）総合学習プラザ",
"東宝アルバビル（リッチモンドホテル鹿児島天文館）",
"東宝アルバビル（リッチモンドホテル鹿児島天文館）",
"ジオ・イニシア博多駅前",
"ジオ・イニシア博多駅前",
"アクロス福岡",
"アクロス福岡",
"ａｍ/ｐｍ博多駅中央改札口店",
"ａｍ/ｐｍ博多駅中央改札口店",
"みやき町立三根中学校",
"みやき町立三根中学校");

n = Math.floor(Math.random()*imgURL.length);
document.write(imgURL[n]+'<br /><span class="small">');
document.write(captionArray[n]);
document.write("（平成21年照明普及賞：九州支部表彰）</span>");
}