//SLIDER $(document).ready(function(){ $(".tn", this).hover( function() { $("img.a", this).stop().animate({'opacity': 0.3}, 200); }, function() { $("img.a", this).stop().animate({'opacity': 1}, 200); } ); });