Is it possible to perform the reverse action of $(this)?
So instead of gettin the this element, it gets everything matching .sb-popular-thumb a but excluding $(this)?
See code below of example. I have marked $(this) with $(reverse) so you can see what I am trying to achieve.
$('.sb-popular-thumb a').hover(
function () {
$('.sb-popular').stop().animate({
height : '168px'
}, 200);
$(this).siblings('.sb-popular-thumb-title').show();
$(reverse).siblings('.sb-popular-thumb-overlay').stop().fadeIn(200);
},
function () {
$('.sb-popular').stop().animate({
height : '140px'
}, 200);
$(this).siblings('.sb-popular-thumb-title').hide();
$(reverse).siblings('.sb-popular-thumb-overlay').stop().fadeOut(200);
});
This will imitate your ‘reverse’