when i use google.load() to load jquery, what do i use in place of
$(function() { ... });
is ...
google.setOnLoadCallback(function() { ... });
the same thing? this may be too slow if i am loading alot with google.load()?
then will
google.load("jquery", "1.3.2", {callback: docLoaded()});
run AFTER the whole document is loaded?