// JavaScript Document


// ランダムに画像を表示する

// リンク先URL
var c=new Array(
				"http://www.unions.co.jp/voice/tr2/tr201/",
				"http://www.unions.co.jp/voice/tr2/tr202/",
				"http://www.unions.co.jp/voice/tr2/tr203/",
				"http://www.unions.co.jp/voice/tr2/tr204/",
				"http://www.unions.co.jp/voice/tr2/tr205/",
				"http://www.unions.co.jp/voice/tr2/tr206/",
				"http://www.unions.co.jp/voice/tr2/tr207/",
				"http://www.unions.co.jp/voice/tr2/tr208/",
				"http://www.unions.co.jp/voice/tr2/tr209/"
				);

// 画像のアドレス
var img=new Array(
				  "img/tr2_01.jpg",
				  "img/tr2_02.jpg",
				  "img/tr2_03.jpg",
				  "img/tr2_04.jpg",
				  "img/tr2_05.jpg",				  
				  "img/tr2_06.jpg",
				  "img/tr2_07.jpg",
				  "img/tr2_08.jpg",
				  "img/tr2_09.jpg"
				  );

var x=Math.floor(Math.random()*c.length)
document.write('<A HREF="'+c[x]+'"><IMG SRC="'+img[x]+'" BORDER="0"></A>');
