Consider the following: There is a panel (let it be a div element) who's height is controlled using the hover function. The only css property that is animated is height. Both of the animations (on mouse over height+=500px; on mouse out height-=500px) have duration of 10 seconds. Can u imagine this: douring the period of those 20 seconds, you can 'accidentally' roll the mouse in and out at least 10 times.
What jquery does is it remembers all that happened (with the mouse) and chains a looong list of unnecessary animations.
I need u guys to help me prevent this.