<body bgcolor=#000000 onLoad="snow()"> <script language="JavaScript"> <!-- N = 60; Y = new Array(); X = new Array(); S = new Array(); A = new Array(); B = new Array(); M = new Array(); iH=window.document.body.clientHeight; iW=window.document.body.clientWidth; for (i=0; i < N; i++) { Y[i]=Math.round(Math.random()*iH); X[i]=Math.round(Math.random()*iW); S[i]=Math.round(Math.random()*5+2); A[i]=0; B[i]=Math.random()*0.01+0.1; M[i]=Math.round(Math.random()*1+2); } document.write('<div style="position:absolute;top:0px;left:0px">'); document.write('<div style="position:relative">'); for (i = 0; i < N; i++) { document.write('<div id="si" style="position:absolute;top:0;left:0;width:'+M[i]+';height:'+M[i]+';background:#ffffff;font-size:'+M[i]+'"></div>') } document.write('</div></div>'); function snow() { var H=window.document.body.clientHeight; var W=window.document.body.clientWidth; var T=document.body.scrollTop; var L=document.body.scrollLeft; for (i=0; i < N; i++) { sy=S[i]*Math.sin(90*Math.PI/180); sx=S[i]*Math.cos(A[i]); Y[i]+=sy; X[i]+=sx; if (Y[i] > H) { Y[i]=-10; X[i]=Math.round(Math.random()*W); M[i]=Math.round(Math.random()*1+1); S[i]=Math.round(Math.random()*5+2); } si[i].style.pixelLeft=X[i];si[i].style.pixelTop=Y[i]+T A[i]+=B[i]; } setTimeout('snow()',10); } //--> </script>