i love snow so i thought i should show you how to put snow on your own website
excuse my bad english but I'm only 14 years old and i come from germany
so this code is for snow on your own homepage ..there are many different kinds of doing it so:
this first one is like there is snow mooving around and snow just at the same place not mooving
CODE<!-- Snowfall --> <script type="text/javascript">
var no = 15; // number of snowflakes
var speed = 10; // the smaler, the faster snowflakes
var snowflake = "http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif"; // picture source
var ns4b = (document.layers) ? 1 : 0; // Netscape4.x
var b4up = (document.all) ? 1 : 0; // MSIE4, Opera5, Netccape5
var dx, xp, yp; // coordinate and position variables
var am, stx, sty; // amplitude and step variables
var snowobj;
var i, doc_width = 1024, doc_height = 800;
if (ns4b) {
doc_width = self.innerWidth;
doc_height = self.innerHeight;
} else if (b4up) {
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
} else {
b4up = 1;
}
dx = new Array();
xp = new Array();
yp = new Array();
am = new Array();
stx = new Array();
sty = new Array();
snowobj = new Array();
for (i=0; i<no; ++i)
{
dx[i] = 0;
xp[i] = Math.random()*(doc_width-50);
yp[i] = Math.random()*doc_height;
am[i] = Math.random()*20;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
if (ns4b)
{
if (i == 0) { document.write('<LAYER NAME="flake'+ i +'" LEFT="15" TOP="15" VISIBILITY="show"><IMG SRC="'+ snowflake +'" BORDER="0" ></a></LAYER>'
; } else { document.write('<LAYER NAME="flake'+ i +'" LEFT="15" TOP="15" VISIBILITY="show"><IMG SRC="'+ snowflake +'" BORDER="0" ></LAYER>'
; }
}
else if (b4up)
{
if (i == 0) { document.write('<DIV ID="flake'+ i +'" STYLE="position:absolute; z-index:'+ i +'; visibility:visible; top:15px; left:15px;"><IMG SRC="'+ snowflake + '" BORDER="0"></a></DIV>'
; } else { document.write('<DIV ID="flake'+ i +'" STYLE="position:absolute; z-index:'+ i +'; visibility:visible; top:15px; left:15px;"><IMG SRC="'+ snowflake + '" BORDER="0"></DIV>'
; }
snowobj[i] = eval (document.getElementById("flake"+i).style);
}
}
function snowNS() {
for (i=0; i<no; ++i) {
yp[i] += sty[i];
if (yp[i] > doc_height-50)
{
xp[i] = Math.random()*(doc_width-am[i]-30);
yp[i] = 0;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
}
dx[i] += stx[i];
document.layers["flake"+i].top = yp[i];
document.layers["flake"+i].left = xp[i]
+ am[i]*Math.sin(dx[i]);
}
setTimeout("snowNS()", speed);
}
function snowDocument() {
for (i=0; i<no; ++i) {
yp[i] += sty[i];
if (yp[i] > doc_height-50)
{
xp[i] = Math.random()*(doc_width-am[i]-30);
yp[i] = 0;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
}
dx[i] += stx[i];
snowobj[i].top = yp[i];
snowobj[i].left = xp[i] + am[i]*Math.sin(dx[i]);
}
setTimeout("snowDocument()", speed);
}
if (ns4b) {
snowNS();
} else if (b4up) {
snowDocument();
}
</script>
<div style="position: absolute; z-index: 0; visibility: visible; top: 395.203px; left: 767.029px;" id="flake0"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 1; visibility: visible; top: 368.029px; left: 49.4728px;" id="flake1"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 2; visibility: visible; top: 230.096px; left: 742.436px;" id="flake2"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 3; visibility: visible; top: 360.55px; left: 957.022px;" id="flake3"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 4; visibility: visible; top: 271.726px; left: 211.484px;" id="flake4"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 5; visibility: visible; top: 283.09px; left: 279.892px;" id="flake5"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 6; visibility: visible; top: 410.956px; left: 369.359px;" id="flake6"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 7; visibility: visible; top: 692.613px; left: 89.0148px;" id="flake7"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 8; visibility: visible; top: 534.52px; left: 184.017px;" id="flake8"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 9; visibility: visible; top: 720.301px; left: 176.105px;" id="flake9"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 10; visibility: visible; top: 207.013px; left: 865.224px;" id="flake10"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 11; visibility: visible; top: 411.279px; left: 786.529px;" id="flake11"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 12; visibility: visible; top: 651.409px; left: 303.622px;" id="flake12"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 13; visibility: visible; top: 76.2666px; left: 733.825px;" id="flake13"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 14; visibility: visible; top: 359.395px; left: 894.404px;" id="flake14"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<!-- / Snowfall -->
thisone is the snow not mooving
CODE<div style="position: absolute; z-index: 0; visibility: visible; top: 395.203px; left: 767.029px;" id="flake0"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 1; visibility: visible; top: 368.029px; left: 49.4728px;" id="flake1"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 2; visibility: visible; top: 230.096px; left: 742.436px;" id="flake2"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 3; visibility: visible; top: 360.55px; left: 957.022px;" id="flake3"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 4; visibility: visible; top: 271.726px; left: 211.484px;" id="flake4"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 5; visibility: visible; top: 283.09px; left: 279.892px;" id="flake5"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 6; visibility: visible; top: 410.956px; left: 369.359px;" id="flake6"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 7; visibility: visible; top: 692.613px; left: 89.0148px;" id="flake7"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 8; visibility: visible; top: 534.52px; left: 184.017px;" id="flake8"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 9; visibility: visible; top: 720.301px; left: 176.105px;" id="flake9"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 10; visibility: visible; top: 207.013px; left: 865.224px;" id="flake10"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 11; visibility: visible; top: 411.279px; left: 786.529px;" id="flake11"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 12; visibility: visible; top: 651.409px; left: 303.622px;" id="flake12"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 13; visibility: visible; top: 76.2666px; left: 733.825px;" id="flake13"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
<div style="position: absolute; z-index: 14; visibility: visible; top: 359.395px; left: 894.404px;" id="flake14"><img border="0" src="http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif" alt="" /></div>
and thisone is yust the mooving snow :
CODE<!-- schneeflocken --> <script type="text/javascript">
var no = 15; // number of snowflakes
var speed = 10; // the smaler, the faster snowflakes
var snowflake = "http://i148.photobucket.com/albums/s39/The-Rabbit_2007/flocke.gif"; // picture source
var ns4b = (document.layers) ? 1 : 0; // Netscape4.x
var b4up = (document.all) ? 1 : 0; // MSIE4, Opera5, Netccape5
var dx, xp, yp; // coordinate and position variables
var am, stx, sty; // amplitude and step variables
var snowobj;
var i, doc_width = 1024, doc_height = 800;
if (ns4b) {
doc_width = self.innerWidth;
doc_height = self.innerHeight;
} else if (b4up) {
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
} else {
b4up = 1;
}
dx = new Array();
xp = new Array();
yp = new Array();
am = new Array();
stx = new Array();
sty = new Array();
snowobj = new Array();
for (i=0; i<no; ++i)
{
dx[i] = 0;
xp[i] = Math.random()*(doc_width-50);
yp[i] = Math.random()*doc_height;
am[i] = Math.random()*20;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
if (ns4b)
{
if (i == 0) { document.write('<LAYER NAME="flake'+ i +'" LEFT="15" TOP="15" VISIBILITY="show"><IMG
SRC="'+ snowflake +'" BORDER="0" ></a></LAYER>'
; } else { document.write('<LAYER NAME="flake'+ i +'" LEFT="15"
TOP="15" VISIBILITY="show"><IMG SRC="'+ snowflake +'" BORDER="0" ></LAYER>'
; }
}
else if (b4up)
{
if (i == 0) { document.write('<DIV ID="flake'+ i +'" STYLE="position:absolute; z-index:'+ i +';
visibility:visible; top:15px; left:15px;"><IMG SRC="'+ snowflake + '" BORDER="0"></a></DIV>'
; } else {
document.write('<DIV ID="flake'+ i +'" STYLE="position:absolute; z-index:'+ i +'; visibility:visible; top:15px;
left:15px;"><IMG SRC="'+ snowflake + '" BORDER="0"></DIV>'
; }
snowobj[i] = eval (document.getElementById("flake"+i).style);
}
}
function snowNS() {
for (i=0; i<no; ++i) {
yp[i] += sty[i];
if (yp[i] > doc_height-50)
{
xp[i] = Math.random()*(doc_width-am[i]-30);
yp[i] = 0;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
}
dx[i] += stx[i];
document.layers["flake"+i].top = yp[i];
document.layers["flake"+i].left = xp[i]
+ am[i]*Math.sin(dx[i]);
}
setTimeout("snowNS()", speed);
}
function snowDocument() {
for (i=0; i<no; ++i) {
yp[i] += sty[i];
if (yp[i] > doc_height-50)
{
xp[i] = Math.random()*(doc_width-am[i]-30);
yp[i] = 0;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
}
dx[i] += stx[i];
snowobj[i].top = yp[i];
snowobj[i].left = xp[i] + am[i]*Math.sin(dx[i]);
}
setTimeout("snowDocument()", speed);
}
if (ns4b) {
snowNS();
} else if (b4up) {
snowDocument();
}
</script>
<!-- / Schneeflocken -->
the snowflake on your homepage would look like this : 
but you can change the link if you want to use your own flake xD
i know this is not the right place for this posting because this is an image- and design-website but this was the first chance to show my talent 