I have a small very simple function.
$('#desk, #chair, #seat, #tablet').hover(
function(){
$(this).find('.hoverBlack').stop().animate({bottom:'0', opacity:'1'},{queue:false,duration:200})
},
function(){
setTimeout(function() {
$('.hoverBlack').stop().animate({bottom:'-62px', opacity:'.5'},{queue:false,duration:800})
},1)
}
)
The problem is that it simply does not work properly. Whenever i hover over one image and quickly hover other .hoverBlack do not animate. What can I do to fix it.