I feel like this isn't the most effective nor efficient way of doing things:
line.stop(true, true).show('slide', {direction: whichway}, speed-150, function() {
title.stop(true, true).fadeIn(speed-200, function() {
sub.stop(true, true).show('slide', {direction: whichway}, speed-50, function() {
subtext.stop(true, true).show();
paragraph.stop(true, true).slideDown(speed);
});
});
});
whichway/speed are dynamic, but other than that it's all stuff that has to be in sync and queued up.
Is there a more efficient way of doing this?