Sync animations

Sync animations

Hi,

how do you syncronize separated animations?
// instead of:
$('hoho').animate({ top:100, left:500 });

// i want to separate the commands like:
$('hoho').animate({ top:100 });
$('hoho').animate({ left:500 });

But the last code animates chronologically

Please help