$(document).ready(function(){
    $("img.grey").hover(
        function() {
            $(this).stop().animate({"opacity": "0"}, 100);
        },
        function() {
            $(this).stop().animate({"opacity": "1"}, 700);
    });
});
