\[code\] $("#LeftArrow_Wrapper, #RightArrow_Wrapper").hover( function () { $("#LeftArrow_Button, #RightArrow_Button").stop(true,true).show(); } );\[/code\]When I mouse over the it I just want it to show the arrow but if I swipe my mouse over it multiple times it queues up the show function and my understanding was that the stop would just cut the animation any help would be appreciated. I have change my code to be just this\[code\] $("#LeftArrow_Button, #RightArrow_Button").hover(function () { $(this).stop(true,true).show(); });\[/code\]and I am still getting the queuing issue