$(function() {
            $('.column ul li a img').animate({"opacity": .5 });

            $('.column ul li a img').hover(function() {
                $(this).stop().animate({ "opacity": 1 });
            }, function() {
                $(this).stop().animate({ "opacity": .5 });
            });
        });
