If you would like to use your own images for falling objects, this code is for you!

<script type="text/javascript">
<!--
var fallObjects=new Array();function newObject(url,height,width){fallObjects[fallObjects.length]=new Array(url,height,width);}
///////////// EDIT THIS SECTION //////////////
var numObjs=20, waft=50, fallSpeed=20, wind=0;
newObject("http://www.twilightmoon.net/catster/fall/snowflakea.gif",10,10);
newObject("http://www.twilightmoon.net/catster/fall/snowflake2a.gif",10,10);
newObject("http://www.twilightmoon.net/catster/fall/snowflake3a.gif",10,10);
newObject("http://www.twilightmoon.net/catster/fall/snowflake4a.gif",10,10);
//////////////////////////////////////////////// -->
</script>
<script language="JavaScript" src="http://www.twilightmoon.net/cc/js/fallingobjects.js"></script>
The above code uses 4 images, but you can use as many or as few as you want.
Edit the code with your own image locations. The highlighted part below is really the only thing you need to change:
newObject("
http://www.twilightmoon.net/catster/fall/snowflakea.gif",10,10);
It's not necessary, but you can also play around with the numbers in
var numObjs=
20, waft=
50, fallSpeed=
20, wind=
0;
Have fun and feel free to post any questions or problems you have here.