$(document).ready(function() {
        $('.lightbox img, .shop_thumbnail img, .download_thumbnail img').each(function() {
            $(this).hover(function() {
                $(this).stop().animate({ opacity: 0.75 }, 450);
            },
           function() {
               $(this).stop().animate({ opacity: 1.0 }, 900);
           });
        });
});