I cannot find any documentation. All I want to do it set jQuerys default animation speed. Something like this:
$.setDefaultAnimationSpeed = 5000; //does not work
$('elem').fadeIn(); // takes 5 seconds
$('elem').animate({
foo : bar
}); // also takes 5 seconds
Thanks folks!