im trying to make a div fade out and then have a second div fade in in its place but the callback for the second div to fade is doesn\'t seem to wait for the first to finish
you should try to alter the times, they are easing at the same speed:
$("#story2").fadeIn("1000", function(){ $("#story1").fadeOut("300"); });
try that :)