JQuery tab and dequeue problem

JQuery tab and dequeue problem


When I toggle the tabs on jquery, the toggle seems to be little bit
lagging. - takes about 2 seconds to view the content after click tab,
and the toggle continues if I click each tab fast enough and follows
even after last click of tab(for example, if I click tab a, b, c, a,
b, c, in one second, I see the tab toggles - I think it should simply
kill the queue, and display the last clicked tab). I have relatively
big dom in each tab content, but if I change them to generic way of
toggling using basic javascript method. (wrap insdie div and change
css display property to none/block).
When I look at the profiler in the developer, i have noticed that
problem comes from the jquery core dequeue function on load tab. - it
takes up almost 95% of the time.
Funny thing is this problem doesn't get noticed in the jquery web
pages where they are using tabs. (maybe the content is small
enough ?)
I am using latest jquery, ui library
Is there anyone have similar problem and had to ditch jquery tab ?