// JavaScript Document

function pet(){
var imglist = new Array("top5.swf","top6.swf","top7.swf","top8.swf","top10.swf","macaron.swf","memento.swf","kanon01.swf");
var selectnum = Math.floor((Math.random()*100)) % imglist.length;
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="416" height="300" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">\n');
document.write('<param name="movie" value="http://www.amayahome.com/images/'+imglist[selectnum]+'" />\n');
document.write('<param name="quality" value="high" />\n');
document.write('<param name="bgcolor" value="#ffffff" />\n');
document.write('<embed src="http://www.amayahome.com/images/'+imglist[selectnum]+'" quality="high" bgcolor="#ffffff" width="416" height="300" name="navigator" align="middle" play="true" loop="false" quality="high" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"><\/embed>\n');
document.write('<\/object>\n');
}