
        $(document).ready(function(){
            $("#scrolldown").click(function() {
                $("body").animate({"scrollTop" : "100"},"slow");
            });
            $("img.grey").hover(
            function() {
                $(this).stop().animate({"opacity": "1"}, "slow");
            },
            function() {
                $(this).stop().animate({"opacity": "0.2"}, "slow");
            });


        });
   

