$(document) .ready (function() { $('#sidebaritem a img') .animate ({ opacity: 1 }); $('#sidebaritem a img') .hover (function() { $(this) .stop() .animate({opacity:.8}, 200); }, function() { $(this) .stop() .animate({opacity:1}, 1000); }); }); $(document) .ready (function() { $('#slideshowwrapper a img') .animate ({ opacity: 1 }); $('#slideshowwrapper a img') .hover (function() { $(this) .stop() .animate({opacity:.8}, 200); }, function() { $(this) .stop() .animate({opacity:1}, 1000); }); });
Login |