снежинки на сайт.
Вставьте код в баннер внизу страницы, если хотите получить снежинки на весь экран.
Снежинку думаю найдете сами.
Не забудьте заменить var imgsrc="
Для просмотра ссылки Войди или Зарегистрируйся ДОМЕН/image1/snow/ВАША КАРТИНКА.gif";
<script type="text/javascript">
var imgsrc="
Для просмотра ссылки Войди или Зарегистрируйся ДОМЕН/image1/snow/ВАША КАРТИНКА.gif";
var ie4=(document.all)?1:0;
var ns6=(document.getElementById&&!document.all)?1:0;
var height=(document.layers)?window.innerHeight:window.document.body.scrollHeight;
if (height<window.document.body.clientHeight) height=window.document.body.clientHeight;
var width=(document.layers)?window.innerWidth:window.document.body.clientWidth;
var col=Math.round(height/60);  //количество снежинок
amp=new Array();
x_pos=new Array();
y_pos=new Array();
stx=new Array();
sty=new Array();
deltax=new Array();
obj=new Array();
for (i=0; i<col; ++i) {
 amp
=Math.random()*19;
 x_pos=Math.random()*(width-amp-29);
 y_pos=Math.random()*height;
 stx=0.03+Math.random()*0.25;
 sty=2+Math.random();
 deltax=0;
 if (ie4||ns6) {
  document.write("<img id=\"sn"+ i +"\" style=\"position:absolute;" +
  "z-index: "+ i +"; visibility:visible; top:-50px; left:-50px;\"" +
  "src='"+imgsrc+"' border=0>");
 }
 obj = document.getElementById("sn"+i);
}
function flake() {
 for (i=0; i<col; ++i) {
  y_pos+=sty;
  if (y_pos>height-49) {
  x_pos=Math.random()*(width-amp-29);
  y_pos=0;
  }
  deltax+=stx;
  obj.style.top=y_pos+"px";
  obj.style.left=x_pos+amp*Math.sin(deltax)+"px";
 }
setTimeout("flake()", 40);
}
flake();
</script>