$(document) .ready (function() { $('#contentwrapper-full a img') .animate ({ opacity: 1 }); $('#contentwrapper-full a img') .hover (function() { $(this) .stop() .animate({opacity:.5}, 200); }, function() { $(this) .stop() .animate({opacity:1}, 1000); }); }); $(document) .ready (function() { $('#contentwrapper a img') .animate ({ opacity: 1 }); $('#contentwrapper a img') .hover (function() { $(this) .stop() .animate({opacity:.5}, 200); }, function() { $(this) .stop() .animate({opacity:1}, 1000); }); });