// JavaScript Document
// show a image randomly.
var img = new Array();
img[0] = "/shared/img/top_photo01.jpg";
img[1] = "/shared/img/top_photo02.jpg";
img[2] = "/shared/img/top_photo03.jpg";
img[3] = "/shared/img/top_photo04.jpg";
img[4] = "/shared/img/top_photo05.jpg";
img[5] = "/shared/img/top_photo06.jpg";
img[6] = "/shared/img/top_photo07.jpg";
var alt = new Array();
alt[0] = "";
alt[1] = "";
alt[2] = "";
alt[3] = "";
alt[4] = "";
alt[5] = "";
alt[6] = "";
var url = new Array();
url[0] = "http://www.dinosaur.pref.fukui.jp/";
url[1] = "http://www.fuku-e.com/special/0911/content/globefish/index.html";
url[2] = "http://www.fuku-e.com/special/0911/content/crab/index.html";
url[3] = "http://info.pref.fukui.jp/tisan/sangakukan/jitsuwafukui/index.html";
url[4] = "http://www.fuku-e.com/special/0911/content/info/index.html";
url[5] = "http://www.fuku-e.com/special/0911/content/daffodil/index.html";
url[6] = "http://www.291yamagiwa.com/060_season/season_04.php";
var n = Math.floor(Math.random()*img.length);
if(url[n] == '') {
document.write("<img src='"+img[n]+"' border='0' alt='" + alt[n] + "' />");
}else{
document.write("<a href='"+url[n]+"'><img src='"+img[n]+"' border='0' alt='" + alt[n] + "' /></a>");
}
//