I\'ve added the async attrib to my javascript inclusion HTML.
So now I\'ve:
This may be what you are looking for:
http://www.yterium.net/jQl-an-asynchronous-jQuery-Loader - jQl an asynchronous jQuery Loader.
It asynchronously loads jQuery without blocking other components:
jQl.loadjQ('http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js');
jQl automatically catches all jQuery().ready() calls, so you can write:
jQl will queue these function calls, and execute them as soon as jQuery is loaded and the DOM is ready, as they would be executed in the usual way.