// This JavaScript code can be freely redistributed
// as long as this copyright notice is keept unchanged.
// This code is used on AS-IS basis and
// you use it on your own risk. Author of this code
// is not responsible for any damage that this
// code may make.
//
// If you use this JavaScript SNOW in your own web pages,
// please sent a note to snow@altan.hr.
//
// JS Snow v0.1
// finished on 11-10-1999 23:04 in Zagreb, Croatia.
//
// Copyright 1999 Altan d.o.o.
// http://www.altan.hr/
// http://www.altan.hr/snow/index.html
// E-mail: snow@altan.hr
var image = "http://www.geocities.co.jp/Milano-Aoyama/5654/flower.gif"; // ★画像のURL
var timer = 30; // ★画像を動かす速さ(数を大きくすれば遅くなる)
var no = 8; // ★一度に表示する画像の数
var ns4up = (document.layers) ? 1 : 0; // browser sniffer
var ie4up = (document.all) ? 1 : 0;
var dx, xp, yp; // coordinate and position variables
var am, stx, sty; // amplitude and step variables
var i, doc_width = 800, doc_height = 600;
if (ns4up) {
doc_width = self.innerWidth;
doc_height = self.innerHeight;
} else if (ie4up) {
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
}
dx = new Array();
xp = new Array();
yp = new Array();
am = new Array();
stx = new Array();
sty = new Array();
for (i = 0; i < no; ++ i) {
dx[i] = 0; // set coordinate variables
xp[i] = Math.random()*(doc_width-50); // set position variables
yp[i] = Math.random()*doc_height;
am[i] = Math.random()*20; // set amplitude variables
stx[i] = 0.02 + Math.random()/10; // set step variables
sty[i] = 0.7 + Math.random(); // set step variables
if (ns4up) { // set layers
if (i == 0) {
document.write("