<!--

// ランダム壁紙カラー表示

// 配列の設定
wall = new Array();

// 
wall[0] = "home-image/flame-p.gif";

// 
wall[1] = "home-image/flame-p2.gif";

// 
wall[2] = "home-image/flame-p3.gif";
// 

wall[3] = "home-image/flame-p4.gif";

// 変数 i に 0 から 2 までの範囲の乱数を代入
// Math.floor() 小数点以下を切り捨て
// Math.random() 乱数を発生
i = Math.floor(Math.random()*4);

// 書出し
document.write('<style type="text/css">');
document.write('body {background-image:url(');
document.write(wall[i]);
document.write(');}');
document.write('</style>');

-->


