jQuery(document).ready(function($){ 
    $('img:not(.nofade, #slider img, img.icon, #slider-full-width img, a.thumb img)').hover(
        
        function(){ $(this).stop().animate({opacity:0.6}, 500); },
        function(){ $(this).stop().animate({opacity:1}, 500); }
    
    );
});
