I'm animating the height of element:
// Animate height of items
$j(".item .row").toggle(function(){
$j(this).animate({height:500},200);
},function(){
$j(this).animate({height:300},200);
});
I was wondering how to add easing to it? (e.g. the animation slowing down towards the end?)