function fncRandomImage() {
// ◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆
// [ "images/mainimage_01.jpg", "news/index.html" ] ,
// [ "画像ファイルURL", "リンク先URL" ] ,
// 上記の表記方法で数を増やす事が出来ます。
// 最後の設定には「,」を付けないでください。
// 「http://salt-and-pepper.jp/」部分は記述しなくても構いません。
// ◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆
var randomlist = [
	[ "http://salt-and-pepper.jp/information/files/mon.jpg", "schedule/index.cgi?mode=view&no=283" ] ,
        [ "http://salt-and-pepper.jp/information/files/kyanpe-n-thumb-760x250-683.jpg", "news/news000884.html" ] ,
        [ "http://salt-and-pepper.jp/information/files/kyanpe-n-thumb-760x250-683.jpg", "news/news000884.html" ] ,
        [ "http://salt-and-pepper.jp/information/files/kyanpe-n-thumb-760x250-683.jpg", "news/news000884.html" ] ,
        [ "http://salt-and-pepper.jp/information/files/SOL-thumb-760x250-670.jpg", "event/index.html" ] ,
        [ "http://salt-and-pepper.jp/information/files/kyanpe-n-thumb-760x250-683.jpg", "news/news000884.html" ] ,
        [ "http://salt-and-pepper.jp/information/files/douto-thumb-760x250-668.jpg", "schedule/index.cgi?mode=view&no=303"  ] 
];
   var selectnum = Math.floor(Math.random() * randomlist.length);
   var output = 
      '<a href="' + randomlist[selectnum][1] + '">' +
      '<img src="' + randomlist[selectnum][0] + '"' +
      ' alt="SALT&amp;PEPPER ソルトアンドペッパー へようこそ"></a>';
   document.write(output);
}
