snow_intensive=300;
snow_speed=25000;
snow_src=new Array('/js/snow/snow01.png','/js/snow/snow02.png','/js/snow/snow03.png','/js/snow/snow04.png','/js/snow/snow05.png','/js/snow/snow06.png','/js/snow/snow07.png','/js/snow/snow08.png','/js/snow/snow09.png','/js/snow/snow10.png');

function snow_start() {

    snow_id=1;
    snow_y=$("body").height()-30;
    setInterval(function() {

        snow_x=Math.random()*document.body.offsetWidth-100;
        snow_img=(snow_src instanceof Array ? snow_src[Math.floor(Math.random()*snow_src.length)] : snow_src);
        snow_elem='<img class="png" id="snow'+snow_id+'" style="position:absolute; left:'+snow_x+'px; top:0;z-index:10000" src="'+snow_img+'">';
        $("body").append(snow_elem);
        snow_move(snow_id);
        snow_id++;

    },snow_intensive);

}

function snow_move(id) {

    $('#snow'+id).animate({top:snow_y,left:"+="+Math.random()*100},snow_speed,function() {
    $(this).empty().remove();

});} 

$(document).ready(snow_start);
