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