	
            jQuery(document).ready(function(){
				//$(document).snowfall({round : true, minSize: 3, maxSize:8, flakeColor: '#eee', minSpeed: 1, maxSpeed: 5});
                jQuery("#hide-button").click(function(){
                        jQuery("#second-div").hide()
                        jQuery("#hide-button").hide()
                        jQuery("#show-button").show()
                });
                jQuery("#show-button").click(function(){
                        jQuery("#second-div").show()
                        jQuery("#hide-button").show()
                        jQuery("#show-button").hide()
                })
            });

