I'm trying in slideUp a div then fade in another when it has completed the slide. I tried using the fadeIn as a callback function
$('slidediv').slideUp('slow', function() {
$('fadediv').fadeIn('slow');
});
Is there a way to delay the fade, everything happens so fast you can't
really tell the new div is even there.

