// JavaScript Document


// ランダムに画像を表示する

// リンク先URL
var c=new Array(
				"http://www.unions.co.jp/voice/sch/sc002/index.html",
				"http://www.unions.co.jp/voice/sch/sc001/index.html",
				"http://www.unions.co.jp/voice/sch/sc003/index.html"
				);

// 画像のアドレス
var img=new Array(
				  "img/sch_02.jpg",
				  "img/sch_01.jpg",
				  "img/sch_03.jpg"
				  );

var x=Math.floor(Math.random()*c.length)
document.write('<A HREF="'+c[x]+'"><IMG SRC="'+img[x]+'" BORDER="0"></A>');

