﻿// ランダムに画像を表示する

function imagechange(){

jmp = new Array();
img = new Array();

// 画像のアドレス(数字はジャンプ先のアドレスと対応)
img[0] = "../flash/toppic.swf";

n = Math.floor(Math.random()*img.length);
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="950" height="280">');
document.write('<param name="movie" value='+img[n]+'>');
document.write('<embed src="'+img[n]+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="950" height="280"></embed></object>'); 
}